diff --git a/.gitattributes b/.gitattributes
index 93db076dedefb6e101c31fd03726b1e6ff43dbc5..b3d487871e5124acc2b73a0246a935b6cc85c74b 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -162,3 +162,14 @@ runs/l2r90-wd0033-ssl/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lf
runs/l2r90-wd0033-ssl/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r90-wd0033-ssl/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r90-wd0033-ssl/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r50-baseline/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/l2r50-baseline/checkpoint-1080/chat_template.jinja b/runs/l2r50-baseline/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/config.json b/runs/l2r50-baseline/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/generation_config.json b/runs/l2r50-baseline/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/model.safetensors b/runs/l2r50-baseline/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..513a19644dc96840707c993c0b831484a2620455
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fdbc99b8f8bc880e8d79862e24df5fad8001a6bd1d9264625069329170ed5044
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-1080/optimizer.pt b/runs/l2r50-baseline/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..74f5baa50c371edadd2e7a824e1943df9bc0e049
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29fd1bb1a7e57705b2d2c128839f18e94d976d5b956053c38b1499f8e2962bb9
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-1080/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..691b2ea3e1b4f187dd5e6c0cda81e8858f6ac4cf
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8832e70f2d40e03d52900feac4951dac7fa3ec89
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-1080/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..cc6afe867703008555530c3c86fd6cf35ab7d7b1
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-1080/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4eb9917247f226d9cb7ed167e78dae92754ce06b
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/scheduler.pt b/runs/l2r50-baseline/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6460bf7d5e8aadff08654c5c446813d18e721d62
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/tokenizer.json b/runs/l2r50-baseline/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1080/trainer_state.json b/runs/l2r50-baseline/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..923c1485b02eedae95d65af571b29efb84b1f475
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "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/l2r50-baseline/checkpoint-1080/training_args.bin b/runs/l2r50-baseline/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-1440/chat_template.jinja b/runs/l2r50-baseline/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/config.json b/runs/l2r50-baseline/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/generation_config.json b/runs/l2r50-baseline/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/model.safetensors b/runs/l2r50-baseline/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b6b0259a8dce075fb99d5c9c51a07b767042411c
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7a4f9ae9cb1b547d15bc7673aa746ffd00754583527c80a28198a0a115c6b133
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-1440/optimizer.pt b/runs/l2r50-baseline/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7655957b99052d58d0d4fdc6fed746335e015618
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0bfeea0abc44158b1aba756f0f6bb9983ef86b193ae7e5783b6075a86b727ccd
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-1440/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..aeac82010ce2bacd37bd6af051976d38c4fe2812
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f1f618778c4f7500b21ac62d13c3ef2bebccd4b9
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-1440/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5fdc074e62a1d8319b7a92b775a1095e5ea19aad
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-1440/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ffe532f21731696b54618fdc406075cce9e04300
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/scheduler.pt b/runs/l2r50-baseline/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..59b8db4a485766e1d20d11a905a37774da0cec09
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/tokenizer.json b/runs/l2r50-baseline/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1440/trainer_state.json b/runs/l2r50-baseline/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c93e28ef4adde607aff79d1af14616b066e66d6d
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "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/l2r50-baseline/checkpoint-1440/training_args.bin b/runs/l2r50-baseline/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-1800/chat_template.jinja b/runs/l2r50-baseline/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/config.json b/runs/l2r50-baseline/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/generation_config.json b/runs/l2r50-baseline/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/model.safetensors b/runs/l2r50-baseline/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..31fbda40b54cf5311e12e0a9290627266f31fb65
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bb8a38587c5c96d237fd7c1cbc9c0161a03106cd15464b6749fe3a94751d2102
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-1800/optimizer.pt b/runs/l2r50-baseline/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ce6def4f08ef5d4f97232332bc6ffe2637bb9e91
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c6f1b8c033894b0148a4edbd3fc74e8e6f838cef988dac4f813980dea3a63555
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-1800/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0e1e82cfece0f9f4b960303264240de21a41f2b2
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4b06db675e31ec9653c89af439b51ab40f3cdab3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-1800/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..88526073cc9c988c98d9074803bd3fbc38252bdd
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-1800/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a9ec1a11b85512a95c1b62566c99d6bf9aa9c3ee
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/scheduler.pt b/runs/l2r50-baseline/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6e0ba2afe167e5831737cd4b431b166033f17fab
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/tokenizer.json b/runs/l2r50-baseline/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-1800/trainer_state.json b/runs/l2r50-baseline/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..4b74e12b84a79a16314a6dc511476033bab94e02
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "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/l2r50-baseline/checkpoint-1800/training_args.bin b/runs/l2r50-baseline/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-2160/chat_template.jinja b/runs/l2r50-baseline/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/config.json b/runs/l2r50-baseline/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/generation_config.json b/runs/l2r50-baseline/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/model.safetensors b/runs/l2r50-baseline/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0c4dfcd393da64b2c8bc56db3b0b7087c1ec62ed
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4c9b1c79e9baa5a00de4c9bc5c1a79979d0b89f191c0f537b22c18542b1bfbf5
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-2160/optimizer.pt b/runs/l2r50-baseline/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..89cf2c4abaa6bfcbc84d8cd0a1882b33466bebf9
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad807f3a233b287f7e5abd5e26de1b55a47447a72f16a95b4b3f8475ed6647de
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-2160/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..88d2248182b7fded85e1613b19e4b23df99807a8
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f963be7f5cfeb7d06680588884ac6cd1c88f6843
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-2160/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..45ba75ff4448dedf7ab83e4464cb19a4bce5fc27
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-2160/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..181c4a277a2b37c89f2d06083f8b4a7ca6902792
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/scheduler.pt b/runs/l2r50-baseline/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..35aefe7762df83336d8bfddab210c09c85e6b3aa
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/tokenizer.json b/runs/l2r50-baseline/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2160/trainer_state.json b/runs/l2r50-baseline/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..6fb455cc226a34b5ffa29fedd9914da1719641c4
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 3.9668192863464355,
+ "eval_runtime": 59.7448,
+ "eval_samples_per_second": 40.874,
+ "eval_steps_per_second": 1.289,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.01895272172987461,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.4655308723449707,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.0206465981900692,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.456347942352295,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.021339893341064453,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.4679999351501465,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.021127765998244286,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.4543442726135254,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.02075084298849106,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.4941041469573975,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.020014401525259018,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.4785819053649902,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.019297510385513306,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.5006165504455566,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.020143838599324226,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.5038743019104004,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.019436940550804138,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.4647061824798584,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.019416574388742447,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.4757144451141357,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.018273303285241127,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.4821829795837402,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.0193482618778944,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.486717939376831,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.018939225003123283,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.4995615482330322,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.018757406622171402,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.478853702545166,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.018794208765029907,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.4686648845672607,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.019849533215165138,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.44936466217041,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.017794709652662277,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.4726390838623047,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.018498266115784645,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.4935479164123535,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.020185040310025215,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.4993715286254883,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.0197488684207201,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.488629102706909,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.018577605485916138,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.463611364364624,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.018072819337248802,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.433458089828491,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.017909955233335495,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.46743106842041,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.017891421914100647,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.510708808898926,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.017307734116911888,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.4369726181030273,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.019437436014413834,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.483191967010498,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.020199673250317574,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.506659507751465,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.018461620435118675,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.52777361869812,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.018418388441205025,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.4900410175323486,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.019452253356575966,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.4596498012542725,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.01981848105788231,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.5019569396972656,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.019489169120788574,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.493274688720703,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.017666205763816833,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.4854674339294434,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.018194179981946945,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.464219093322754,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.018553493544459343,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.52459716796875,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.018783342093229294,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.4779176712036133,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.018300117924809456,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.4834327697753906,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.016716109588742256,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.5340709686279297,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.0180519986897707,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.4652693271636963,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.017762597650289536,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.520275115966797,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.016915665939450264,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.484226703643799,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.017562730237841606,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.503143787384033,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.017763083800673485,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.5216102600097656,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.017134003341197968,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.459318161010742,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.017334967851638794,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.503740072250366,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.018297912552952766,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.5073437690734863,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.016978446394205093,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.479010581970215,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.018022775650024414,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.4845454692840576,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.017773890867829323,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.511157751083374,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.017100736498832703,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.5245039463043213,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.01903403550386429,
+ "learning_rate": 0.000303,
+ "loss": 3.5196127891540527,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.019149888306856155,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.529757022857666,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.017584891989827156,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.4859747886657715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.017863815650343895,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.531475067138672,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.01691904291510582,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.5179905891418457,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.016864124685525894,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.454268217086792,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.017918378114700317,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.5012617111206055,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.01676037721335888,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.5219480991363525,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.01847025193274021,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.5377297401428223,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.018975937739014626,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.507004976272583,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.016559354960918427,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.4815826416015625,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.018526967614889145,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.515927314758301,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.017936473712325096,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.5180106163024902,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.016746483743190765,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.49497652053833,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.016190055757761,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.5065670013427734,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.01770264096558094,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.520918369293213,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.018389247357845306,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.5104870796203613,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.01625588908791542,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.5063014030456543,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.018390661105513573,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.4983432292938232,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.017851997166872025,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.4671382904052734,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.01709488220512867,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.5293564796447754,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.020290598273277283,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.4583382606506348,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 3.963580846786499,
+ "eval_runtime": 59.72,
+ "eval_samples_per_second": 40.891,
+ "eval_steps_per_second": 1.289,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.020780518651008606,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.4834160804748535,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.025042658671736717,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.444469928741455,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.0249223243445158,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.471982002258301,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.022936193272471428,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.444572687149048,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.020676013082265854,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.4065611362457275,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.02019929699599743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.4570608139038086,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.02004287950694561,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.484922409057617,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.02029941976070404,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.4986963272094727,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.020057478919625282,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.445338487625122,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.02228299155831337,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.483475923538208,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.02322900854051113,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.4487721920013428,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.02177809737622738,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.446108341217041,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.019677769392728806,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.4320807456970215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.019688908010721207,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.4385204315185547,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.022444449365139008,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.454873561859131,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.02132454887032509,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.417757987976074,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.019102852791547775,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.4758338928222656,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.019153913483023643,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.4548845291137695,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.018708474934101105,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.41184139251709,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.018964219838380814,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.4620611667633057,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.01894865743815899,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.462468147277832,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.01778542436659336,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.4635019302368164,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.01781347393989563,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.4695935249328613,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.018062470480799675,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.4512240886688232,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.018868396058678627,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.478242874145508,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.018648196011781693,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.488654613494873,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.01821073703467846,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.415480613708496,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.017095481976866722,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.4678256511688232,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.019249994307756424,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.4535183906555176,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.01782015897333622,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.4813966751098633,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.01768648251891136,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.4406304359436035,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.018398065119981766,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.5028929710388184,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.018166350200772285,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.4500198364257812,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.017817072570323944,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.479569911956787,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.017651008442044258,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.487365484237671,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.017052030190825462,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.4818499088287354,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.016867922618985176,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.458005905151367,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.019170604646205902,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.4821205139160156,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.01869809441268444,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.461486339569092,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.017185309901833534,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.4753856658935547,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.018102167174220085,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.5052707195281982,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.01819782890379429,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.4518673419952393,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.019287217408418655,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.4718570709228516,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.019887477159500122,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.521130084991455,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.01915234513580799,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.469726085662842,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.017925266176462173,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.4749679565429688,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.017552683129906654,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.492969274520874,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.018236950039863586,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.4670491218566895,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.01720520667731762,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.4750189781188965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.01775733195245266,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.479222536087036,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.01812276616692543,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.459787607192993,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.01904568076133728,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.5087194442749023,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.01938941702246666,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.446824550628662,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.019309647381305695,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.491738796234131,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.017283691093325615,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.493600368499756,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.016226667910814285,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.475055694580078,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.018183575943112373,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.4631152153015137,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.018759222701191902,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.4848737716674805,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.01769597828388214,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.434507131576538,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.018075186759233475,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.4512555599212646,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.01827143132686615,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.4821510314941406,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.016271373257040977,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.527249574661255,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.01738668791949749,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.496260643005371,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.01751634106040001,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.489319324493408,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.01708020083606243,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.522711753845215,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.01802200637757778,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.468125104904175,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.01686692237854004,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.473863124847412,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.018587907776236534,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.4831924438476562,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.01865585334599018,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.5089101791381836,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.018999487161636353,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.466235876083374,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.01811971701681614,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.487901210784912,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.019976072013378143,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.5207200050354004,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 3.9621336460113525,
+ "eval_runtime": 61.1865,
+ "eval_samples_per_second": 39.911,
+ "eval_steps_per_second": 1.258,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.019912846386432648,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.3985512256622314,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.024092121049761772,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.418576955795288,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.025791682302951813,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.438657522201538,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.02268844284117222,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.40936017036438,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.019450107589364052,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.4093122482299805,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.019663041457533836,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.4370360374450684,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.02180861309170723,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.401123523712158,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.019850924611091614,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.4346837997436523,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.01967731863260269,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.4286041259765625,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.021333033218979836,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.4089221954345703,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.019694557413458824,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.4345288276672363,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.019076067954301834,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.3857693672180176,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.019870081916451454,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.4427146911621094,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.019260870292782784,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.4654557704925537,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.019225789234042168,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.4689555168151855,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.018402278423309326,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.413832664489746,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.01897112838923931,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.463106632232666,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.017959903925657272,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.4246349334716797,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.01858312077820301,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.428595542907715,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.018829360604286194,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.431976318359375,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.01736574061214924,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.4456610679626465,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.018335754051804543,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.4379255771636963,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.017936233431100845,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.4841232299804688,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.01732073538005352,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.4084701538085938,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.01764756441116333,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.434319257736206,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.01841113530099392,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.48443341255188,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.018168708309531212,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.447305679321289,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.017524663358926773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.444819927215576,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02032609097659588,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.431865692138672,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.018760820850729942,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.4857521057128906,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.01954142563045025,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.4749484062194824,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.01863463968038559,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.4594125747680664,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.018121957778930664,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.462247848510742,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.020321296527981758,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.473355770111084,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.020091157406568527,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.44814395904541,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.018810130655765533,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.4815800189971924,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.01748197339475155,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.4565114974975586,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.01935272477567196,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.4282071590423584,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.020307231694459915,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.4802942276000977,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.018399840220808983,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.4127840995788574,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.017388368025422096,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.4655821323394775,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.017165357246994972,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.4485411643981934,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.018523339182138443,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.463998556137085,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.017113015055656433,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.4211177825927734,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.01753869280219078,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.4926679134368896,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.01966564543545246,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.4498205184936523,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.018401050940155983,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.4501113891601562,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.017483070492744446,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.444553852081299,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.017510205507278442,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.4368369579315186,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.017599117010831833,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.4243321418762207,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.017932835966348648,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.4390244483947754,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.017309516668319702,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.4360458850860596,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.01870712824165821,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.458862781524658,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.018164832144975662,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.436872959136963,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.019033480435609818,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.4607229232788086,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.01908167265355587,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.4636034965515137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.01771005615592003,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.445199489593506,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.017116276547312737,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.476942539215088,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.018403125926852226,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.483548641204834,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.01699613407254219,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.4688446521759033,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.017341643571853638,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.4211671352386475,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.017147235572338104,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.465404510498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.01729694940149784,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.4884610176086426,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.017307840287685394,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.4440464973449707,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.01669687032699585,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.4840574264526367,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.01770629547536373,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.473775863647461,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.018066268414258957,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.46079158782959,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.01776258274912834,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.4646782875061035,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.01719190552830696,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.465542793273926,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.017640043050050735,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.479426860809326,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.018124815076589584,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.469224452972412,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.020947884768247604,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.4448342323303223,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 3.961923599243164,
+ "eval_runtime": 60.6839,
+ "eval_samples_per_second": 40.241,
+ "eval_steps_per_second": 1.269,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.018345043063163757,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.3847005367279053,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.024673614650964737,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.3936479091644287,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.023461783304810524,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.4155068397521973,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.02139718271791935,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.4172348976135254,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.022412599995732307,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.422422409057617,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.023503335192799568,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.4016504287719727,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.02148125134408474,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.4122307300567627,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.02075907029211521,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.4226012229919434,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.021128104999661446,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.4198601245880127,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.020960180088877678,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.4601449966430664,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.02125578559935093,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.4069151878356934,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.019701316952705383,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.461728572845459,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.01824156567454338,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.418145179748535,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.020667055621743202,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.4467804431915283,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.018905561417341232,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.419218063354492,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.01803084835410118,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.4285359382629395,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.018299192190170288,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.4270992279052734,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.01827562414109707,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.417841911315918,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.0181428212672472,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.417778730392456,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.018655981868505478,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.4135940074920654,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.018191451206803322,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.436255931854248,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.018264364451169968,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.395883560180664,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.01833369955420494,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.424318790435791,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.01866809092462063,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.392127513885498,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.017266878858208656,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.3780999183654785,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.01782945729792118,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.441495656967163,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.019177967682480812,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.432274341583252,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.018710168078541756,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.370002269744873,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.01873788796365261,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.4115757942199707,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.018670711666345596,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.407710313796997,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.016954626888036728,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.4291176795959473,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.017591385170817375,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.4588255882263184,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.01834861934185028,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.4035706520080566,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.017938101664185524,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.401681900024414,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.017014481127262115,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.4659478664398193,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.018274560570716858,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.413947105407715,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.017524776980280876,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.4482595920562744,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.017516497522592545,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.4256112575531006,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.017602261155843735,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.464900016784668,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.01672697253525257,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.4517221450805664,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.018115540966391563,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.455399990081787,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.017758352681994438,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.382112503051758,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.01796640083193779,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.379214286804199,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.018408501520752907,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.4585118293762207,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.017774110659956932,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.4428935050964355,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.019005993381142616,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.430894374847412,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.01825624890625477,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.398871898651123,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.017513982951641083,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.458927631378174,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.018035512417554855,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.4393792152404785,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.017681388184428215,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.420281410217285,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.01752026565372944,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.421967029571533,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.017383750528097153,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.488022804260254,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.017369642853736877,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.4330923557281494,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.017170915380120277,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.4847517013549805,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.018619880080223083,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.445941925048828,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.017903277650475502,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.4373133182525635,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.017392519861459732,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.4088053703308105,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.018057744950056076,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.3827738761901855,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.018045147880911827,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.4172282218933105,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.01774677447974682,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.4111135005950928,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.018675483763217926,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.4543533325195312,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.01890777423977852,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.436513662338257,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.01714302785694599,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.4339404106140137,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.01799493283033371,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.487741231918335,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.018368041142821312,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.4808623790740967,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.018794607371091843,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.4406328201293945,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.018004035577178,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.4440250396728516,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.01753157377243042,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.4302077293395996,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.017021680250763893,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.408231735229492,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.017755234614014626,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.4298901557922363,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.017229322344064713,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.448316812515259,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.01962321437895298,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.4169070720672607,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 3.9616544246673584,
+ "eval_runtime": 65.9803,
+ "eval_samples_per_second": 37.011,
+ "eval_steps_per_second": 1.167,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.019193001091480255,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.4050145149230957,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.019462959840893745,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.3970870971679688,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.01883731596171856,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.4042983055114746,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.018952246755361557,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.385344982147217,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.01955745369195938,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.3938591480255127,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.018866099417209625,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.373230218887329,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.01949951983988285,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.3986949920654297,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.019971610978245735,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.360102891921997,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.019477443769574165,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.392760992050171,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.018458299338817596,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.3768515586853027,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.0199594683945179,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.3532989025115967,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.01768285408616066,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.392155170440674,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.01838548295199871,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.352297782897949,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.019307192414999008,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.4088239669799805,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.01806057058274746,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.397526264190674,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.017745690420269966,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.403240203857422,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.01854657381772995,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.378720283508301,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.017849335446953773,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.4231362342834473,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.01832255721092224,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.3873050212860107,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.017942968755960464,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.4016880989074707,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.01710812747478485,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.3777270317077637,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.018718259409070015,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.386936664581299,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.019576137885451317,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.4325475692749023,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.019076485186815262,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.3955230712890625,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.019532006233930588,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.3632805347442627,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.019326776266098022,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.4010233879089355,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.018273938447237015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.347320079803467,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.018561091274023056,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.433877468109131,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.018709097057580948,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.4183356761932373,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.018022265285253525,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.4214649200439453,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.01795581355690956,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.4257490634918213,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.018068306148052216,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.4248106479644775,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.01741054281592369,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.4057626724243164,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.01920531503856182,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.419201612472534,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.020076720044016838,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.364243507385254,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.019320771098136902,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.4166758060455322,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.018370522186160088,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.3875954151153564,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.018850428983569145,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.4547061920166016,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.01825353503227234,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.421639919281006,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.019217118620872498,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.389070987701416,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.018638942390680313,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.407712936401367,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.017846768721938133,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.4532341957092285,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.018291272222995758,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.4042930603027344,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.017709648236632347,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.421402931213379,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.017348773777484894,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.41768741607666,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0190060343593359,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.401763677597046,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.018145151436328888,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.4228663444519043,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.017218708992004395,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.4383559226989746,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.01807982474565506,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.441455841064453,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.017581624910235405,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.417386770248413,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.016385234892368317,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.430408239364624,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.018257347866892815,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.441180944442749,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.016987234354019165,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.3837966918945312,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.018253926187753677,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.4105005264282227,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.017789114266633987,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.396979570388794,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.017308581620454788,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.444622039794922,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.017247803509235382,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.407770872116089,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.01750587485730648,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.4184064865112305,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.018543049693107605,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.414088249206543,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.017576420679688454,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.4110798835754395,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.016934648156166077,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.3960723876953125,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.018137667328119278,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.445399045944214,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.018090933561325073,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.3903958797454834,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.017409203574061394,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.4429993629455566,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.017465865239501,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.409397602081299,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.018192371353507042,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.409186840057373,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.017598532140254974,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.4059994220733643,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.017320340499281883,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.4299216270446777,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.019035857170820236,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.4485421180725098,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.017793111503124237,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.396441698074341,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.016964446753263474,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.4195380210876465,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.021174993366003036,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.428013324737549,
+ "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/l2r50-baseline/checkpoint-2160/training_args.bin b/runs/l2r50-baseline/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-2520/chat_template.jinja b/runs/l2r50-baseline/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/config.json b/runs/l2r50-baseline/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/generation_config.json b/runs/l2r50-baseline/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/model.safetensors b/runs/l2r50-baseline/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5a04b2cd0dedce0f0d83d94b06ff7fa463435fb0
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d363a7f7d1376fda857239e71ed7a3d0daa4ce5e8eaa0139cda7f56fa884982f
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-2520/optimizer.pt b/runs/l2r50-baseline/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..427e0fa1650dad64e942c1107cf01e726cdfa970
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:97502907614353a59730c5aca2ea148e4014a9947a618d96e11b5a39c6287421
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-2520/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..eaeeea885c2ef4b0cef75101a8e62f4ab4851bd2
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..81543e2df97bda93c650637e0e76e6eba567cc34
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-2520/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4ff4a5c1c578c912bb73e9e1039feddae85108d0
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-2520/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fc461818ec193e0f1784351202790a5fa22189ee
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/scheduler.pt b/runs/l2r50-baseline/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b53f13f877641b522f2c435934f587fdad6161cc
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/tokenizer.json b/runs/l2r50-baseline/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2520/trainer_state.json b/runs/l2r50-baseline/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c623f656f72a262da3edbc1921857e9b0e1e440b
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 3.9668192863464355,
+ "eval_runtime": 59.7448,
+ "eval_samples_per_second": 40.874,
+ "eval_steps_per_second": 1.289,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.01895272172987461,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.4655308723449707,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.0206465981900692,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.456347942352295,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.021339893341064453,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.4679999351501465,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.021127765998244286,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.4543442726135254,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.02075084298849106,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.4941041469573975,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.020014401525259018,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.4785819053649902,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.019297510385513306,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.5006165504455566,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.020143838599324226,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.5038743019104004,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.019436940550804138,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.4647061824798584,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.019416574388742447,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.4757144451141357,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.018273303285241127,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.4821829795837402,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.0193482618778944,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.486717939376831,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.018939225003123283,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.4995615482330322,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.018757406622171402,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.478853702545166,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.018794208765029907,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.4686648845672607,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.019849533215165138,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.44936466217041,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.017794709652662277,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.4726390838623047,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.018498266115784645,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.4935479164123535,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.020185040310025215,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.4993715286254883,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.0197488684207201,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.488629102706909,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.018577605485916138,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.463611364364624,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.018072819337248802,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.433458089828491,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.017909955233335495,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.46743106842041,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.017891421914100647,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.510708808898926,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.017307734116911888,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.4369726181030273,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.019437436014413834,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.483191967010498,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.020199673250317574,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.506659507751465,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.018461620435118675,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.52777361869812,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.018418388441205025,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.4900410175323486,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.019452253356575966,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.4596498012542725,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.01981848105788231,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.5019569396972656,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.019489169120788574,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.493274688720703,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.017666205763816833,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.4854674339294434,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.018194179981946945,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.464219093322754,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.018553493544459343,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.52459716796875,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.018783342093229294,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.4779176712036133,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.018300117924809456,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.4834327697753906,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.016716109588742256,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.5340709686279297,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.0180519986897707,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.4652693271636963,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.017762597650289536,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.520275115966797,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.016915665939450264,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.484226703643799,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.017562730237841606,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.503143787384033,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.017763083800673485,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.5216102600097656,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.017134003341197968,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.459318161010742,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.017334967851638794,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.503740072250366,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.018297912552952766,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.5073437690734863,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.016978446394205093,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.479010581970215,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.018022775650024414,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.4845454692840576,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.017773890867829323,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.511157751083374,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.017100736498832703,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.5245039463043213,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.01903403550386429,
+ "learning_rate": 0.000303,
+ "loss": 3.5196127891540527,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.019149888306856155,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.529757022857666,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.017584891989827156,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.4859747886657715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.017863815650343895,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.531475067138672,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.01691904291510582,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.5179905891418457,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.016864124685525894,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.454268217086792,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.017918378114700317,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.5012617111206055,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.01676037721335888,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.5219480991363525,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.01847025193274021,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.5377297401428223,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.018975937739014626,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.507004976272583,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.016559354960918427,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.4815826416015625,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.018526967614889145,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.515927314758301,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.017936473712325096,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.5180106163024902,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.016746483743190765,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.49497652053833,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.016190055757761,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.5065670013427734,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.01770264096558094,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.520918369293213,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.018389247357845306,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.5104870796203613,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.01625588908791542,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.5063014030456543,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.018390661105513573,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.4983432292938232,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.017851997166872025,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.4671382904052734,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.01709488220512867,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.5293564796447754,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.020290598273277283,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.4583382606506348,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 3.963580846786499,
+ "eval_runtime": 59.72,
+ "eval_samples_per_second": 40.891,
+ "eval_steps_per_second": 1.289,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.020780518651008606,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.4834160804748535,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.025042658671736717,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.444469928741455,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.0249223243445158,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.471982002258301,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.022936193272471428,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.444572687149048,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.020676013082265854,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.4065611362457275,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.02019929699599743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.4570608139038086,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.02004287950694561,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.484922409057617,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.02029941976070404,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.4986963272094727,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.020057478919625282,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.445338487625122,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.02228299155831337,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.483475923538208,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.02322900854051113,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.4487721920013428,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.02177809737622738,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.446108341217041,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.019677769392728806,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.4320807456970215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.019688908010721207,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.4385204315185547,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.022444449365139008,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.454873561859131,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.02132454887032509,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.417757987976074,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.019102852791547775,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.4758338928222656,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.019153913483023643,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.4548845291137695,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.018708474934101105,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.41184139251709,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.018964219838380814,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.4620611667633057,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.01894865743815899,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.462468147277832,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.01778542436659336,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.4635019302368164,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.01781347393989563,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.4695935249328613,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.018062470480799675,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.4512240886688232,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.018868396058678627,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.478242874145508,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.018648196011781693,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.488654613494873,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.01821073703467846,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.415480613708496,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.017095481976866722,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.4678256511688232,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.019249994307756424,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.4535183906555176,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.01782015897333622,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.4813966751098633,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.01768648251891136,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.4406304359436035,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.018398065119981766,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.5028929710388184,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.018166350200772285,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.4500198364257812,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.017817072570323944,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.479569911956787,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.017651008442044258,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.487365484237671,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.017052030190825462,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.4818499088287354,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.016867922618985176,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.458005905151367,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.019170604646205902,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.4821205139160156,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.01869809441268444,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.461486339569092,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.017185309901833534,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.4753856658935547,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.018102167174220085,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.5052707195281982,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.01819782890379429,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.4518673419952393,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.019287217408418655,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.4718570709228516,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.019887477159500122,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.521130084991455,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.01915234513580799,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.469726085662842,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.017925266176462173,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.4749679565429688,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.017552683129906654,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.492969274520874,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.018236950039863586,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.4670491218566895,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.01720520667731762,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.4750189781188965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.01775733195245266,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.479222536087036,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.01812276616692543,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.459787607192993,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.01904568076133728,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.5087194442749023,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.01938941702246666,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.446824550628662,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.019309647381305695,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.491738796234131,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.017283691093325615,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.493600368499756,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.016226667910814285,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.475055694580078,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.018183575943112373,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.4631152153015137,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.018759222701191902,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.4848737716674805,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.01769597828388214,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.434507131576538,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.018075186759233475,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.4512555599212646,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.01827143132686615,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.4821510314941406,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.016271373257040977,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.527249574661255,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.01738668791949749,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.496260643005371,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.01751634106040001,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.489319324493408,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.01708020083606243,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.522711753845215,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.01802200637757778,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.468125104904175,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.01686692237854004,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.473863124847412,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.018587907776236534,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.4831924438476562,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.01865585334599018,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.5089101791381836,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.018999487161636353,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.466235876083374,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.01811971701681614,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.487901210784912,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.019976072013378143,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.5207200050354004,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 3.9621336460113525,
+ "eval_runtime": 61.1865,
+ "eval_samples_per_second": 39.911,
+ "eval_steps_per_second": 1.258,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.019912846386432648,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.3985512256622314,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.024092121049761772,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.418576955795288,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.025791682302951813,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.438657522201538,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.02268844284117222,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.40936017036438,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.019450107589364052,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.4093122482299805,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.019663041457533836,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.4370360374450684,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.02180861309170723,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.401123523712158,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.019850924611091614,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.4346837997436523,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.01967731863260269,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.4286041259765625,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.021333033218979836,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.4089221954345703,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.019694557413458824,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.4345288276672363,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.019076067954301834,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.3857693672180176,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.019870081916451454,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.4427146911621094,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.019260870292782784,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.4654557704925537,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.019225789234042168,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.4689555168151855,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.018402278423309326,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.413832664489746,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.01897112838923931,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.463106632232666,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.017959903925657272,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.4246349334716797,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.01858312077820301,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.428595542907715,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.018829360604286194,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.431976318359375,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.01736574061214924,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.4456610679626465,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.018335754051804543,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.4379255771636963,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.017936233431100845,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.4841232299804688,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.01732073538005352,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.4084701538085938,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.01764756441116333,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.434319257736206,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.01841113530099392,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.48443341255188,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.018168708309531212,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.447305679321289,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.017524663358926773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.444819927215576,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02032609097659588,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.431865692138672,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.018760820850729942,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.4857521057128906,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.01954142563045025,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.4749484062194824,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.01863463968038559,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.4594125747680664,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.018121957778930664,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.462247848510742,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.020321296527981758,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.473355770111084,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.020091157406568527,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.44814395904541,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.018810130655765533,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.4815800189971924,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.01748197339475155,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.4565114974975586,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.01935272477567196,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.4282071590423584,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.020307231694459915,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.4802942276000977,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.018399840220808983,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.4127840995788574,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.017388368025422096,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.4655821323394775,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.017165357246994972,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.4485411643981934,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.018523339182138443,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.463998556137085,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.017113015055656433,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.4211177825927734,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.01753869280219078,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.4926679134368896,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.01966564543545246,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.4498205184936523,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.018401050940155983,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.4501113891601562,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.017483070492744446,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.444553852081299,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.017510205507278442,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.4368369579315186,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.017599117010831833,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.4243321418762207,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.017932835966348648,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.4390244483947754,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.017309516668319702,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.4360458850860596,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.01870712824165821,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.458862781524658,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.018164832144975662,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.436872959136963,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.019033480435609818,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.4607229232788086,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.01908167265355587,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.4636034965515137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.01771005615592003,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.445199489593506,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.017116276547312737,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.476942539215088,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.018403125926852226,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.483548641204834,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.01699613407254219,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.4688446521759033,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.017341643571853638,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.4211671352386475,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.017147235572338104,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.465404510498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.01729694940149784,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.4884610176086426,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.017307840287685394,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.4440464973449707,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.01669687032699585,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.4840574264526367,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.01770629547536373,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.473775863647461,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.018066268414258957,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.46079158782959,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.01776258274912834,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.4646782875061035,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.01719190552830696,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.465542793273926,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.017640043050050735,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.479426860809326,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.018124815076589584,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.469224452972412,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.020947884768247604,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.4448342323303223,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 3.961923599243164,
+ "eval_runtime": 60.6839,
+ "eval_samples_per_second": 40.241,
+ "eval_steps_per_second": 1.269,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.018345043063163757,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.3847005367279053,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.024673614650964737,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.3936479091644287,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.023461783304810524,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.4155068397521973,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.02139718271791935,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.4172348976135254,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.022412599995732307,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.422422409057617,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.023503335192799568,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.4016504287719727,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.02148125134408474,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.4122307300567627,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.02075907029211521,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.4226012229919434,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.021128104999661446,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.4198601245880127,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.020960180088877678,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.4601449966430664,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.02125578559935093,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.4069151878356934,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.019701316952705383,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.461728572845459,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.01824156567454338,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.418145179748535,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.020667055621743202,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.4467804431915283,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.018905561417341232,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.419218063354492,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.01803084835410118,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.4285359382629395,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.018299192190170288,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.4270992279052734,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.01827562414109707,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.417841911315918,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.0181428212672472,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.417778730392456,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.018655981868505478,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.4135940074920654,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.018191451206803322,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.436255931854248,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.018264364451169968,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.395883560180664,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.01833369955420494,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.424318790435791,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.01866809092462063,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.392127513885498,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.017266878858208656,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.3780999183654785,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.01782945729792118,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.441495656967163,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.019177967682480812,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.432274341583252,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.018710168078541756,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.370002269744873,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.01873788796365261,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.4115757942199707,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.018670711666345596,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.407710313796997,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.016954626888036728,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.4291176795959473,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.017591385170817375,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.4588255882263184,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.01834861934185028,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.4035706520080566,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.017938101664185524,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.401681900024414,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.017014481127262115,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.4659478664398193,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.018274560570716858,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.413947105407715,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.017524776980280876,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.4482595920562744,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.017516497522592545,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.4256112575531006,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.017602261155843735,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.464900016784668,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.01672697253525257,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.4517221450805664,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.018115540966391563,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.455399990081787,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.017758352681994438,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.382112503051758,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.01796640083193779,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.379214286804199,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.018408501520752907,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.4585118293762207,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.017774110659956932,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.4428935050964355,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.019005993381142616,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.430894374847412,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.01825624890625477,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.398871898651123,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.017513982951641083,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.458927631378174,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.018035512417554855,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.4393792152404785,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.017681388184428215,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.420281410217285,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.01752026565372944,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.421967029571533,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.017383750528097153,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.488022804260254,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.017369642853736877,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.4330923557281494,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.017170915380120277,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.4847517013549805,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.018619880080223083,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.445941925048828,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.017903277650475502,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.4373133182525635,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.017392519861459732,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.4088053703308105,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.018057744950056076,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.3827738761901855,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.018045147880911827,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.4172282218933105,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.01774677447974682,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.4111135005950928,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.018675483763217926,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.4543533325195312,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.01890777423977852,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.436513662338257,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.01714302785694599,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.4339404106140137,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.01799493283033371,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.487741231918335,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.018368041142821312,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.4808623790740967,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.018794607371091843,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.4406328201293945,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.018004035577178,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.4440250396728516,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.01753157377243042,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.4302077293395996,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.017021680250763893,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.408231735229492,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.017755234614014626,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.4298901557922363,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.017229322344064713,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.448316812515259,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.01962321437895298,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.4169070720672607,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 3.9616544246673584,
+ "eval_runtime": 65.9803,
+ "eval_samples_per_second": 37.011,
+ "eval_steps_per_second": 1.167,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.019193001091480255,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.4050145149230957,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.019462959840893745,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.3970870971679688,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.01883731596171856,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.4042983055114746,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.018952246755361557,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.385344982147217,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.01955745369195938,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.3938591480255127,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.018866099417209625,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.373230218887329,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.01949951983988285,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.3986949920654297,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.019971610978245735,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.360102891921997,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.019477443769574165,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.392760992050171,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.018458299338817596,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.3768515586853027,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.0199594683945179,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.3532989025115967,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.01768285408616066,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.392155170440674,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.01838548295199871,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.352297782897949,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.019307192414999008,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.4088239669799805,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.01806057058274746,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.397526264190674,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.017745690420269966,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.403240203857422,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.01854657381772995,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.378720283508301,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.017849335446953773,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.4231362342834473,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.01832255721092224,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.3873050212860107,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.017942968755960464,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.4016880989074707,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.01710812747478485,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.3777270317077637,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.018718259409070015,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.386936664581299,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.019576137885451317,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.4325475692749023,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.019076485186815262,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.3955230712890625,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.019532006233930588,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.3632805347442627,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.019326776266098022,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.4010233879089355,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.018273938447237015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.347320079803467,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.018561091274023056,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.433877468109131,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.018709097057580948,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.4183356761932373,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.018022265285253525,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.4214649200439453,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.01795581355690956,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.4257490634918213,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.018068306148052216,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.4248106479644775,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.01741054281592369,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.4057626724243164,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.01920531503856182,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.419201612472534,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.020076720044016838,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.364243507385254,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.019320771098136902,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.4166758060455322,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.018370522186160088,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.3875954151153564,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.018850428983569145,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.4547061920166016,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.01825353503227234,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.421639919281006,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.019217118620872498,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.389070987701416,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.018638942390680313,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.407712936401367,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.017846768721938133,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.4532341957092285,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.018291272222995758,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.4042930603027344,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.017709648236632347,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.421402931213379,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.017348773777484894,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.41768741607666,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0190060343593359,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.401763677597046,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.018145151436328888,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.4228663444519043,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.017218708992004395,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.4383559226989746,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.01807982474565506,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.441455841064453,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.017581624910235405,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.417386770248413,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.016385234892368317,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.430408239364624,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.018257347866892815,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.441180944442749,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.016987234354019165,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.3837966918945312,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.018253926187753677,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.4105005264282227,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.017789114266633987,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.396979570388794,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.017308581620454788,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.444622039794922,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.017247803509235382,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.407770872116089,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.01750587485730648,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.4184064865112305,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.018543049693107605,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.414088249206543,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.017576420679688454,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.4110798835754395,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.016934648156166077,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.3960723876953125,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.018137667328119278,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.445399045944214,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.018090933561325073,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.3903958797454834,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.017409203574061394,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.4429993629455566,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.017465865239501,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.409397602081299,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.018192371353507042,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.409186840057373,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.017598532140254974,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.4059994220733643,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.017320340499281883,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.4299216270446777,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.019035857170820236,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.4485421180725098,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.017793111503124237,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.396441698074341,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.016964446753263474,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.4195380210876465,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.021174993366003036,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.428013324737549,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 3.9667880535125732,
+ "eval_runtime": 62.2277,
+ "eval_samples_per_second": 39.243,
+ "eval_steps_per_second": 1.237,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.01875605247914791,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.38484525680542,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.018568016588687897,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.3507912158966064,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.019872169941663742,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.353137969970703,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.01876811869442463,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.375810384750366,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.018586816266179085,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.399104595184326,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.020378353074193,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.3919358253479004,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.019244177266955376,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.3788328170776367,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.0193084217607975,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.3619728088378906,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.019315209239721298,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.3798677921295166,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.018572242930531502,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.3925108909606934,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.01862615905702114,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.351928234100342,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.01858530193567276,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.348261833190918,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.018370235338807106,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.392763376235962,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.019499799236655235,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.378734588623047,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.018300920724868774,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.375892400741577,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.018973981961607933,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.3861308097839355,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.01848417893052101,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.369990587234497,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.01829555258154869,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.3849124908447266,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.018444348126649857,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.3794360160827637,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.018307942897081375,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.385989189147949,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.0177899319678545,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.4433321952819824,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.017565859481692314,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.3808670043945312,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.017919441685080528,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.4058759212493896,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.017944026738405228,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.4076156616210938,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.01726466603577137,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.3993449211120605,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.01821359619498253,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.388521194458008,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.018399931490421295,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.355663776397705,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.018190836533904076,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.3569793701171875,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.017945483326911926,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.422205924987793,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.017825208604335785,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.405452251434326,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.018042994663119316,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.409529447555542,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.018815988674759865,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.3680338859558105,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.0177475456148386,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.3957064151763916,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.01767324097454548,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.426119565963745,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.017502157017588615,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.3860602378845215,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.01826084591448307,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.3443658351898193,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.018149342387914658,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.441053628921509,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.01743144541978836,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.369959831237793,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.018931198865175247,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.3382790088653564,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.01852957159280777,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.393571138381958,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.01744253933429718,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.4136338233947754,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.0188548993319273,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.420109748840332,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.01842757686972618,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.38987398147583,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.018423188477754593,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.3657498359680176,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.01937674544751644,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.3901844024658203,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.019053233787417412,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.39098858833313,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.018784556537866592,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.375641345977783,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.019018791615962982,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.3715341091156006,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.018060091882944107,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.385960578918457,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.019320931285619736,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.3708150386810303,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.018254855647683144,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.378389835357666,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.018344849348068237,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.3670427799224854,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.01864561252295971,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.3780577182769775,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.017792504280805588,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.3890440464019775,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.01926976628601551,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.399027109146118,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.01768679916858673,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.399245262145996,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.017078734934329987,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.3935627937316895,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.017845293506979942,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.4019460678100586,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.01667986437678337,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.3843274116516113,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.017841368913650513,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.420551300048828,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.01789095811545849,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.3795599937438965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.017387472093105316,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.404527425765991,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.017727486789226532,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.368422031402588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.018426265567541122,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.4203758239746094,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.017427532002329826,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.3813066482543945,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.01781563088297844,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.377004384994507,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.017903029918670654,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.390786647796631,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.018497183918952942,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.4222888946533203,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.017774127423763275,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.4386186599731445,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.017519637942314148,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.3773350715637207,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.017004752531647682,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.3996877670288086,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.021300921216607094,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.4059641361236572,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 3.9651381969451904,
+ "eval_runtime": 64.237,
+ "eval_samples_per_second": 38.015,
+ "eval_steps_per_second": 1.199,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.019478417932987213,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.346750259399414,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.022026486694812775,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.3380393981933594,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.021453749388456345,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.3837451934814453,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.018983036279678345,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.373610019683838,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.020668506622314453,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.338237762451172,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.02018234133720398,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.3517379760742188,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0184745155274868,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.33943247795105,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.019766638055443764,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.3328628540039062,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.01948261633515358,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.361790657043457,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.018952930346131325,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.364760398864746,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.019968921318650246,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.343646287918091,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.01876276172697544,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.3668432235717773,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.019649820402264595,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.3603689670562744,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.01976124383509159,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.342262029647827,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.018047695979475975,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.378164052963257,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.01947302557528019,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.3635683059692383,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.020197149366140366,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.3460724353790283,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.01838929019868374,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.318298578262329,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.01938267983496189,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.332218647003174,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.018450573086738586,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.3692564964294434,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.018261199817061424,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.389166831970215,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.019171850755810738,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.3596410751342773,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.018897389993071556,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.363556385040283,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.018566379323601723,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.3412210941314697,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.01843632012605667,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.3628649711608887,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.017748910933732986,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.3751392364501953,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.01864495314657688,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.378866195678711,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.01812228374183178,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.3596580028533936,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.017738813534379005,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.368849754333496,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.018312761560082436,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.400904893875122,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.018566720187664032,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.393960475921631,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.017562083899974823,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.3609988689422607,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.018859874457120895,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.3903446197509766,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.01862078160047531,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.3752737045288086,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.01797969825565815,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.349073648452759,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.018642215058207512,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.3744235038757324,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.01795344427227974,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.3494296073913574,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.01832517795264721,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.3772659301757812,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.018316779285669327,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.34093976020813,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.017998583614826202,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.3537893295288086,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.017405519261956215,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.36969256401062,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.017421456053853035,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.3762929439544678,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.017348214983940125,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.365250587463379,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.017987079918384552,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.3528800010681152,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.01740369200706482,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.34809947013855,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.01767742820084095,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.3873414993286133,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.01786552369594574,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.3993542194366455,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.01840440183877945,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.363851308822632,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.018372777849435806,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.377171516418457,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.018557261675596237,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.3954250812530518,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.018024763092398643,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.38138484954834,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.017409538850188255,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.396350145339966,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.01779399998486042,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.3993735313415527,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.01735842600464821,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.3483355045318604,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.01823486015200615,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.3715901374816895,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.017776019871234894,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.3903591632843018,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.018326254561543465,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.364900827407837,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.01827094703912735,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.3438186645507812,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.01754159666597843,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.3551652431488037,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.017510801553726196,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.3748109340667725,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.01735668070614338,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.403426170349121,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.017473991960287094,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.3682873249053955,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.017098890617489815,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.3883895874023438,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.01794300600886345,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.383709192276001,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.01804060861468315,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.405463457107544,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.018679164350032806,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.36195707321167,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.017713533714413643,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.4066250324249268,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.018171053379774094,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.410841464996338,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.017649803310632706,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.4168691635131836,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.018113741651177406,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.4131321907043457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.017961714416742325,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.3622546195983887,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.021376822143793106,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.376415252685547,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 3.9679276943206787,
+ "eval_runtime": 61.2959,
+ "eval_samples_per_second": 39.84,
+ "eval_steps_per_second": 1.256,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.01854010298848152,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.355283260345459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.021272754296660423,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.342026472091675,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.020176826044917107,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.318216562271118,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.019144972786307335,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.343742847442627,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.019824223592877388,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.313528060913086,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.020314225926995277,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.3193306922912598,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.02053622156381607,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.3684723377227783,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.01978791132569313,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.304171562194824,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.019836056977510452,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.3103976249694824,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.02083844691514969,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.3497042655944824,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.018737798556685448,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.344273805618286,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.01884191669523716,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.3651132583618164,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.01999213732779026,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.3661556243896484,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.018647730350494385,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.2864201068878174,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.02008436620235443,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.3176960945129395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.019128765910863876,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.342780590057373,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.018504656851291656,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.360694408416748,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.019251195713877678,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.353502035140991,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.0191155094653368,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.36004900932312,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.019309870898723602,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.3235840797424316,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.018641646951436996,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.303652763366699,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.019949378445744514,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.337285041809082,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.019760746508836746,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.3083724975585938,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.02001495286822319,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.3428544998168945,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.019619205966591835,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.3327627182006836,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.01893351785838604,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.3344879150390625,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.019357211887836456,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.3769724369049072,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.019030574709177017,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.3382792472839355,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.020675932988524437,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.352922201156616,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.020977795124053955,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.3025388717651367,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.018994763493537903,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.3722734451293945,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.019694602116942406,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.356004238128662,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.018226392567157745,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.382113456726074,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.01841692067682743,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.3366098403930664,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.019732195883989334,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.315749168395996,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.018796177580952644,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.387970209121704,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.019775379449129105,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.370443820953369,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.018852675333619118,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.3536925315856934,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.019294993951916695,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.370649814605713,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.01990549825131893,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.332792282104492,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.01898631826043129,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.3224639892578125,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.018629908561706543,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.335266590118408,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.018405716866254807,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.3959007263183594,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.01788157783448696,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.3351597785949707,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.020106187090277672,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.3679728507995605,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.017606457695364952,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.335587501525879,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.01863827370107174,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.342696189880371,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.019782640039920807,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.369798183441162,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.01814732886850834,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.3451857566833496,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.017988786101341248,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.346390962600708,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.01805048994719982,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.3384218215942383,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.01829634979367256,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.37813663482666,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.01829833723604679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.3628640174865723,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.018536243587732315,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.372694492340088,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.01803603768348694,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.380868434906006,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.017752433195710182,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.3762166500091553,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.01767779514193535,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.34380841255188,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.018236516043543816,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.402556896209717,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.017979485914111137,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.367926597595215,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.017993036657571793,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.346769332885742,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.018208203837275505,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.368234634399414,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.017628569155931473,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.361219882965088,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.018360665068030357,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.413729190826416,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.01757584512233734,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.3906946182250977,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.017810869961977005,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.343019485473633,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.018251191824674606,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.4060416221618652,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.017858365550637245,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.384634494781494,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.01818324811756611,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.384280204772949,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.018480699509382248,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.346285104751587,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.018677543848752975,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.3611297607421875,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.017619142308831215,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.3700506687164307,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.02169172652065754,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.377382278442383,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 3.9741594791412354,
+ "eval_runtime": 61.5554,
+ "eval_samples_per_second": 39.672,
+ "eval_steps_per_second": 1.251,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.018706079572439194,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.330112934112549,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.018803605809807777,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.2816882133483887,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.01853000745177269,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.2921040058135986,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.01803869754076004,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.2959041595458984,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.017079241573810577,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.347280502319336,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.018676968291401863,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.2957611083984375,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.017800159752368927,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.3546934127807617,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.018619297072291374,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.324152946472168,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.017725948244333267,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.3029189109802246,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.018584828823804855,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.339733839035034,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.018017224967479706,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.3224563598632812,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.018421247601509094,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.3387138843536377,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.017832159996032715,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.3309199810028076,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.01841033436357975,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.286250114440918,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.017978807911276817,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.309865951538086,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.018115395680069923,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.351820230484009,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.018109634518623352,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.339370012283325,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.018403902649879456,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.3475425243377686,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.018310097977519035,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.3355088233947754,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.018734650686383247,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.3085222244262695,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.018644677475094795,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.3448398113250732,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.017948374152183533,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.3107964992523193,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.018470020964741707,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.3356473445892334,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.018252935260534286,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.3303258419036865,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.019037144258618355,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.3195786476135254,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.01882040873169899,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.327070474624634,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.018461447209119797,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.381578207015991,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.019000960513949394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.310007333755493,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.018681352958083153,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.3152713775634766,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.018967652693390846,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.32594633102417,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.018034840002655983,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.3330178260803223,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.018646908923983574,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.3461005687713623,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.017740851268172264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.3342158794403076,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.018651707097887993,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.3133187294006348,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.018334193155169487,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.3243541717529297,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.017846569418907166,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.380344867706299,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.01923597976565361,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.3429012298583984,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.01741809956729412,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.3528919219970703,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.01906408555805683,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.2913482189178467,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.01799873635172844,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.3387508392333984,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.018642444163560867,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.3193347454071045,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.018173884600400925,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.363862991333008,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.017236918210983276,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.3342058658599854,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.01799003966152668,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.3633697032928467,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.01782006211578846,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.318671226501465,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.018514500930905342,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.3408515453338623,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.017743313685059547,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.342982292175293,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.01804332435131073,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.362891912460327,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.017191672697663307,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.36106014251709,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.018392067402601242,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.2962214946746826,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.018170949071645737,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.358933925628662,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.018051467835903168,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.3357250690460205,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.017690587788820267,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.372972011566162,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.018124736845493317,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.3036465644836426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.01832064613699913,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.322453737258911,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.017560303211212158,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.356179714202881,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.018004758283495903,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.3430850505828857,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.017548002302646637,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.32066011428833,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.017965545877814293,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.3743958473205566,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.017993371933698654,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.35526704788208,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.017911285161972046,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.333646059036255,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.01756276562809944,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.3324525356292725,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.01796603947877884,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.332352638244629,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.017659401521086693,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.3543365001678467,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.01766570471227169,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.319436550140381,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.017549576237797737,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.3728671073913574,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.018054332584142685,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.3571078777313232,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.01780802756547928,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.3745193481445312,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.017592715099453926,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.349599838256836,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.0175273809581995,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.326724052429199,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.01774190552532673,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.351414203643799,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.021057726815342903,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.355438709259033,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 3.980590343475342,
+ "eval_runtime": 64.0284,
+ "eval_samples_per_second": 38.139,
+ "eval_steps_per_second": 1.203,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.01852157898247242,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.279857635498047,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.01908745802938938,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.322187662124634,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.018606485798954964,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.3020753860473633,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.018377110362052917,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.2937381267547607,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.01929803378880024,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.323049545288086,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.019005702808499336,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.3179938793182373,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.017784560099244118,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.2982497215270996,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.01901211030781269,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.2964975833892822,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.018238209187984467,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.339160919189453,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.019134020432829857,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.2996795177459717,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.01800241880118847,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.3076975345611572,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.018778108060359955,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.325648546218872,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.018111059442162514,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.2866837978363037,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.01902944967150688,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.2555606365203857,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.017556916922330856,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.318284511566162,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.018638404086232185,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.327514410018921,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.018207989633083344,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.3031258583068848,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.017383132129907608,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.2900843620300293,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.018838368356227875,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.316427707672119,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.01785479672253132,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.307969570159912,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.01844528131186962,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.3244309425354004,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.018888844177126884,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.2731080055236816,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.018467606976628304,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.335411548614502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.019145434722304344,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.3307838439941406,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.018448568880558014,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.3589491844177246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.01844393089413643,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.281749725341797,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.01864924281835556,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.3394992351531982,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.01843435876071453,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.335958480834961,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.018971994519233704,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.3345675468444824,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.01797044463455677,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.311155080795288,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.01953919045627117,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.305577039718628,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.01805555634200573,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.334611415863037,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.01828804239630699,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.321223020553589,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.018457863479852676,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.301429271697998,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.019404536113142967,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.2790372371673584,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.017915820702910423,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.3662614822387695,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.018640510737895966,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.327456474304199,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.01786927878856659,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.314758777618408,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.018386350944638252,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.3035807609558105,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.017978228628635406,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.2823503017425537,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.01857025735080242,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.317556142807007,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.0184731837362051,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.3500728607177734,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.018545255064964294,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.3015494346618652,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.017906157299876213,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.3649752140045166,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.018221359699964523,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.3162622451782227,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.018429694697260857,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.297499179840088,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.01882862113416195,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.3677923679351807,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.018744835630059242,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.3383946418762207,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.01775563322007656,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.3351221084594727,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.01871674694120884,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.3395285606384277,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.018029795959591866,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.2882657051086426,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.018112031742930412,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.319117307662964,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.018760433420538902,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.3635196685791016,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.01821206696331501,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.309791088104248,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.018608879297971725,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.3308310508728027,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.019123248755931854,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.3186330795288086,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.018079813569784164,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.33872127532959,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.01852683164179325,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.315091609954834,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.01769738830626011,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.3373889923095703,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.019215177744627,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.335101366043091,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.017887922003865242,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.329543352127075,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.018720639869570732,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.3355422019958496,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.017772076651453972,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.302229881286621,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.01804286427795887,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.3566503524780273,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.017627401277422905,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.334893226623535,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.017679693177342415,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.2954065799713135,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.018215391784906387,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.3217079639434814,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.017763664945960045,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.3080391883850098,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.018400657922029495,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.360480785369873,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.017310120165348053,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.332749366760254,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.01732005923986435,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.3023996353149414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.02136695571243763,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.3171167373657227,
+ "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/l2r50-baseline/checkpoint-2520/training_args.bin b/runs/l2r50-baseline/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-2880/chat_template.jinja b/runs/l2r50-baseline/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/config.json b/runs/l2r50-baseline/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/generation_config.json b/runs/l2r50-baseline/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/model.safetensors b/runs/l2r50-baseline/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..369af1a4768956850f369743ac50efba5ca5593b
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bf8629eb2202b6d070b4d919b28bcd03c9ae9cec1301d76cff27509531554df3
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-2880/optimizer.pt b/runs/l2r50-baseline/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..47ea441c4ffe0db63fd7bb23b0ac93aa76c39d60
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e9cd9896137d565858a968e814b3a7f02b4f14f11d1cf93edd0302f730047181
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-2880/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1eed9c58539306539e95783f584b6af9962a13aa
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..03b4991b2586946db517ecd80aa454a276539730
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-2880/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f289dd30517f21ee6bf12e142f7b170a99900dd1
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-2880/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..6afba15acc0d58b7ef0700827a33ec91e6019f56
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/scheduler.pt b/runs/l2r50-baseline/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5c7f6b411db3da6cc58af5b4530e84dddd5abe00
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/tokenizer.json b/runs/l2r50-baseline/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-2880/trainer_state.json b/runs/l2r50-baseline/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..4e009b04dabd75da2ef745c7b06c9570a60e5b06
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 3.9668192863464355,
+ "eval_runtime": 59.7448,
+ "eval_samples_per_second": 40.874,
+ "eval_steps_per_second": 1.289,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.01895272172987461,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.4655308723449707,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.0206465981900692,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.456347942352295,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.021339893341064453,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.4679999351501465,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.021127765998244286,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.4543442726135254,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.02075084298849106,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.4941041469573975,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.020014401525259018,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.4785819053649902,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.019297510385513306,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.5006165504455566,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.020143838599324226,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.5038743019104004,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.019436940550804138,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.4647061824798584,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.019416574388742447,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.4757144451141357,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.018273303285241127,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.4821829795837402,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.0193482618778944,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.486717939376831,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.018939225003123283,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.4995615482330322,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.018757406622171402,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.478853702545166,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.018794208765029907,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.4686648845672607,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.019849533215165138,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.44936466217041,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.017794709652662277,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.4726390838623047,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.018498266115784645,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.4935479164123535,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.020185040310025215,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.4993715286254883,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.0197488684207201,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.488629102706909,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.018577605485916138,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.463611364364624,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.018072819337248802,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.433458089828491,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.017909955233335495,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.46743106842041,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.017891421914100647,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.510708808898926,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.017307734116911888,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.4369726181030273,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.019437436014413834,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.483191967010498,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.020199673250317574,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.506659507751465,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.018461620435118675,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.52777361869812,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.018418388441205025,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.4900410175323486,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.019452253356575966,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.4596498012542725,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.01981848105788231,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.5019569396972656,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.019489169120788574,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.493274688720703,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.017666205763816833,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.4854674339294434,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.018194179981946945,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.464219093322754,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.018553493544459343,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.52459716796875,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.018783342093229294,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.4779176712036133,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.018300117924809456,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.4834327697753906,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.016716109588742256,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.5340709686279297,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.0180519986897707,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.4652693271636963,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.017762597650289536,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.520275115966797,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.016915665939450264,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.484226703643799,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.017562730237841606,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.503143787384033,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.017763083800673485,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.5216102600097656,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.017134003341197968,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.459318161010742,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.017334967851638794,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.503740072250366,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.018297912552952766,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.5073437690734863,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.016978446394205093,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.479010581970215,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.018022775650024414,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.4845454692840576,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.017773890867829323,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.511157751083374,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.017100736498832703,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.5245039463043213,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.01903403550386429,
+ "learning_rate": 0.000303,
+ "loss": 3.5196127891540527,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.019149888306856155,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.529757022857666,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.017584891989827156,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.4859747886657715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.017863815650343895,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.531475067138672,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.01691904291510582,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.5179905891418457,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.016864124685525894,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.454268217086792,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.017918378114700317,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.5012617111206055,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.01676037721335888,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.5219480991363525,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.01847025193274021,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.5377297401428223,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.018975937739014626,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.507004976272583,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.016559354960918427,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.4815826416015625,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.018526967614889145,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.515927314758301,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.017936473712325096,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.5180106163024902,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.016746483743190765,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.49497652053833,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.016190055757761,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.5065670013427734,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.01770264096558094,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.520918369293213,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.018389247357845306,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.5104870796203613,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.01625588908791542,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.5063014030456543,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.018390661105513573,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.4983432292938232,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.017851997166872025,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.4671382904052734,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.01709488220512867,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.5293564796447754,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.020290598273277283,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.4583382606506348,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 3.963580846786499,
+ "eval_runtime": 59.72,
+ "eval_samples_per_second": 40.891,
+ "eval_steps_per_second": 1.289,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.020780518651008606,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.4834160804748535,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.025042658671736717,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.444469928741455,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.0249223243445158,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.471982002258301,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.022936193272471428,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.444572687149048,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.020676013082265854,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.4065611362457275,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.02019929699599743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.4570608139038086,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.02004287950694561,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.484922409057617,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.02029941976070404,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.4986963272094727,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.020057478919625282,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.445338487625122,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.02228299155831337,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.483475923538208,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.02322900854051113,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.4487721920013428,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.02177809737622738,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.446108341217041,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.019677769392728806,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.4320807456970215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.019688908010721207,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.4385204315185547,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.022444449365139008,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.454873561859131,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.02132454887032509,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.417757987976074,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.019102852791547775,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.4758338928222656,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.019153913483023643,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.4548845291137695,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.018708474934101105,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.41184139251709,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.018964219838380814,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.4620611667633057,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.01894865743815899,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.462468147277832,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.01778542436659336,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.4635019302368164,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.01781347393989563,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.4695935249328613,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.018062470480799675,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.4512240886688232,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.018868396058678627,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.478242874145508,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.018648196011781693,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.488654613494873,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.01821073703467846,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.415480613708496,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.017095481976866722,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.4678256511688232,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.019249994307756424,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.4535183906555176,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.01782015897333622,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.4813966751098633,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.01768648251891136,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.4406304359436035,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.018398065119981766,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.5028929710388184,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.018166350200772285,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.4500198364257812,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.017817072570323944,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.479569911956787,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.017651008442044258,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.487365484237671,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.017052030190825462,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.4818499088287354,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.016867922618985176,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.458005905151367,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.019170604646205902,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.4821205139160156,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.01869809441268444,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.461486339569092,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.017185309901833534,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.4753856658935547,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.018102167174220085,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.5052707195281982,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.01819782890379429,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.4518673419952393,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.019287217408418655,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.4718570709228516,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.019887477159500122,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.521130084991455,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.01915234513580799,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.469726085662842,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.017925266176462173,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.4749679565429688,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.017552683129906654,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.492969274520874,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.018236950039863586,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.4670491218566895,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.01720520667731762,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.4750189781188965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.01775733195245266,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.479222536087036,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.01812276616692543,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.459787607192993,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.01904568076133728,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.5087194442749023,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.01938941702246666,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.446824550628662,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.019309647381305695,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.491738796234131,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.017283691093325615,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.493600368499756,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.016226667910814285,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.475055694580078,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.018183575943112373,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.4631152153015137,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.018759222701191902,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.4848737716674805,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.01769597828388214,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.434507131576538,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.018075186759233475,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.4512555599212646,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.01827143132686615,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.4821510314941406,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.016271373257040977,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.527249574661255,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.01738668791949749,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.496260643005371,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.01751634106040001,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.489319324493408,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.01708020083606243,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.522711753845215,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.01802200637757778,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.468125104904175,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.01686692237854004,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.473863124847412,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.018587907776236534,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.4831924438476562,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.01865585334599018,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.5089101791381836,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.018999487161636353,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.466235876083374,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.01811971701681614,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.487901210784912,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.019976072013378143,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.5207200050354004,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 3.9621336460113525,
+ "eval_runtime": 61.1865,
+ "eval_samples_per_second": 39.911,
+ "eval_steps_per_second": 1.258,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.019912846386432648,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.3985512256622314,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.024092121049761772,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.418576955795288,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.025791682302951813,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.438657522201538,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.02268844284117222,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.40936017036438,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.019450107589364052,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.4093122482299805,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.019663041457533836,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.4370360374450684,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.02180861309170723,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.401123523712158,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.019850924611091614,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.4346837997436523,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.01967731863260269,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.4286041259765625,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.021333033218979836,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.4089221954345703,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.019694557413458824,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.4345288276672363,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.019076067954301834,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.3857693672180176,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.019870081916451454,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.4427146911621094,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.019260870292782784,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.4654557704925537,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.019225789234042168,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.4689555168151855,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.018402278423309326,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.413832664489746,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.01897112838923931,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.463106632232666,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.017959903925657272,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.4246349334716797,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.01858312077820301,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.428595542907715,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.018829360604286194,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.431976318359375,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.01736574061214924,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.4456610679626465,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.018335754051804543,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.4379255771636963,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.017936233431100845,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.4841232299804688,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.01732073538005352,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.4084701538085938,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.01764756441116333,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.434319257736206,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.01841113530099392,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.48443341255188,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.018168708309531212,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.447305679321289,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.017524663358926773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.444819927215576,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02032609097659588,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.431865692138672,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.018760820850729942,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.4857521057128906,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.01954142563045025,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.4749484062194824,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.01863463968038559,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.4594125747680664,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.018121957778930664,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.462247848510742,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.020321296527981758,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.473355770111084,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.020091157406568527,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.44814395904541,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.018810130655765533,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.4815800189971924,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.01748197339475155,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.4565114974975586,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.01935272477567196,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.4282071590423584,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.020307231694459915,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.4802942276000977,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.018399840220808983,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.4127840995788574,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.017388368025422096,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.4655821323394775,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.017165357246994972,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.4485411643981934,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.018523339182138443,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.463998556137085,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.017113015055656433,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.4211177825927734,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.01753869280219078,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.4926679134368896,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.01966564543545246,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.4498205184936523,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.018401050940155983,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.4501113891601562,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.017483070492744446,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.444553852081299,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.017510205507278442,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.4368369579315186,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.017599117010831833,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.4243321418762207,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.017932835966348648,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.4390244483947754,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.017309516668319702,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.4360458850860596,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.01870712824165821,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.458862781524658,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.018164832144975662,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.436872959136963,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.019033480435609818,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.4607229232788086,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.01908167265355587,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.4636034965515137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.01771005615592003,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.445199489593506,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.017116276547312737,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.476942539215088,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.018403125926852226,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.483548641204834,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.01699613407254219,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.4688446521759033,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.017341643571853638,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.4211671352386475,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.017147235572338104,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.465404510498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.01729694940149784,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.4884610176086426,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.017307840287685394,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.4440464973449707,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.01669687032699585,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.4840574264526367,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.01770629547536373,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.473775863647461,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.018066268414258957,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.46079158782959,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.01776258274912834,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.4646782875061035,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.01719190552830696,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.465542793273926,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.017640043050050735,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.479426860809326,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.018124815076589584,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.469224452972412,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.020947884768247604,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.4448342323303223,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 3.961923599243164,
+ "eval_runtime": 60.6839,
+ "eval_samples_per_second": 40.241,
+ "eval_steps_per_second": 1.269,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.018345043063163757,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.3847005367279053,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.024673614650964737,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.3936479091644287,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.023461783304810524,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.4155068397521973,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.02139718271791935,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.4172348976135254,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.022412599995732307,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.422422409057617,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.023503335192799568,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.4016504287719727,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.02148125134408474,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.4122307300567627,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.02075907029211521,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.4226012229919434,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.021128104999661446,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.4198601245880127,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.020960180088877678,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.4601449966430664,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.02125578559935093,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.4069151878356934,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.019701316952705383,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.461728572845459,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.01824156567454338,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.418145179748535,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.020667055621743202,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.4467804431915283,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.018905561417341232,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.419218063354492,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.01803084835410118,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.4285359382629395,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.018299192190170288,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.4270992279052734,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.01827562414109707,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.417841911315918,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.0181428212672472,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.417778730392456,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.018655981868505478,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.4135940074920654,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.018191451206803322,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.436255931854248,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.018264364451169968,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.395883560180664,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.01833369955420494,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.424318790435791,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.01866809092462063,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.392127513885498,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.017266878858208656,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.3780999183654785,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.01782945729792118,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.441495656967163,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.019177967682480812,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.432274341583252,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.018710168078541756,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.370002269744873,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.01873788796365261,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.4115757942199707,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.018670711666345596,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.407710313796997,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.016954626888036728,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.4291176795959473,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.017591385170817375,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.4588255882263184,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.01834861934185028,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.4035706520080566,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.017938101664185524,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.401681900024414,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.017014481127262115,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.4659478664398193,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.018274560570716858,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.413947105407715,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.017524776980280876,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.4482595920562744,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.017516497522592545,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.4256112575531006,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.017602261155843735,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.464900016784668,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.01672697253525257,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.4517221450805664,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.018115540966391563,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.455399990081787,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.017758352681994438,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.382112503051758,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.01796640083193779,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.379214286804199,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.018408501520752907,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.4585118293762207,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.017774110659956932,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.4428935050964355,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.019005993381142616,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.430894374847412,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.01825624890625477,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.398871898651123,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.017513982951641083,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.458927631378174,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.018035512417554855,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.4393792152404785,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.017681388184428215,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.420281410217285,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.01752026565372944,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.421967029571533,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.017383750528097153,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.488022804260254,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.017369642853736877,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.4330923557281494,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.017170915380120277,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.4847517013549805,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.018619880080223083,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.445941925048828,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.017903277650475502,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.4373133182525635,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.017392519861459732,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.4088053703308105,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.018057744950056076,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.3827738761901855,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.018045147880911827,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.4172282218933105,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.01774677447974682,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.4111135005950928,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.018675483763217926,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.4543533325195312,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.01890777423977852,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.436513662338257,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.01714302785694599,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.4339404106140137,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.01799493283033371,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.487741231918335,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.018368041142821312,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.4808623790740967,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.018794607371091843,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.4406328201293945,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.018004035577178,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.4440250396728516,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.01753157377243042,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.4302077293395996,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.017021680250763893,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.408231735229492,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.017755234614014626,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.4298901557922363,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.017229322344064713,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.448316812515259,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.01962321437895298,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.4169070720672607,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 3.9616544246673584,
+ "eval_runtime": 65.9803,
+ "eval_samples_per_second": 37.011,
+ "eval_steps_per_second": 1.167,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.019193001091480255,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.4050145149230957,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.019462959840893745,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.3970870971679688,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.01883731596171856,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.4042983055114746,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.018952246755361557,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.385344982147217,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.01955745369195938,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.3938591480255127,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.018866099417209625,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.373230218887329,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.01949951983988285,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.3986949920654297,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.019971610978245735,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.360102891921997,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.019477443769574165,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.392760992050171,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.018458299338817596,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.3768515586853027,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.0199594683945179,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.3532989025115967,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.01768285408616066,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.392155170440674,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.01838548295199871,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.352297782897949,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.019307192414999008,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.4088239669799805,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.01806057058274746,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.397526264190674,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.017745690420269966,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.403240203857422,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.01854657381772995,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.378720283508301,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.017849335446953773,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.4231362342834473,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.01832255721092224,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.3873050212860107,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.017942968755960464,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.4016880989074707,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.01710812747478485,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.3777270317077637,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.018718259409070015,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.386936664581299,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.019576137885451317,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.4325475692749023,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.019076485186815262,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.3955230712890625,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.019532006233930588,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.3632805347442627,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.019326776266098022,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.4010233879089355,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.018273938447237015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.347320079803467,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.018561091274023056,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.433877468109131,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.018709097057580948,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.4183356761932373,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.018022265285253525,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.4214649200439453,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.01795581355690956,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.4257490634918213,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.018068306148052216,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.4248106479644775,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.01741054281592369,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.4057626724243164,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.01920531503856182,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.419201612472534,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.020076720044016838,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.364243507385254,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.019320771098136902,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.4166758060455322,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.018370522186160088,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.3875954151153564,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.018850428983569145,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.4547061920166016,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.01825353503227234,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.421639919281006,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.019217118620872498,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.389070987701416,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.018638942390680313,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.407712936401367,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.017846768721938133,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.4532341957092285,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.018291272222995758,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.4042930603027344,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.017709648236632347,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.421402931213379,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.017348773777484894,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.41768741607666,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0190060343593359,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.401763677597046,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.018145151436328888,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.4228663444519043,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.017218708992004395,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.4383559226989746,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.01807982474565506,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.441455841064453,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.017581624910235405,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.417386770248413,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.016385234892368317,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.430408239364624,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.018257347866892815,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.441180944442749,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.016987234354019165,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.3837966918945312,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.018253926187753677,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.4105005264282227,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.017789114266633987,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.396979570388794,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.017308581620454788,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.444622039794922,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.017247803509235382,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.407770872116089,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.01750587485730648,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.4184064865112305,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.018543049693107605,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.414088249206543,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.017576420679688454,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.4110798835754395,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.016934648156166077,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.3960723876953125,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.018137667328119278,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.445399045944214,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.018090933561325073,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.3903958797454834,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.017409203574061394,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.4429993629455566,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.017465865239501,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.409397602081299,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.018192371353507042,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.409186840057373,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.017598532140254974,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.4059994220733643,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.017320340499281883,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.4299216270446777,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.019035857170820236,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.4485421180725098,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.017793111503124237,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.396441698074341,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.016964446753263474,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.4195380210876465,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.021174993366003036,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.428013324737549,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 3.9667880535125732,
+ "eval_runtime": 62.2277,
+ "eval_samples_per_second": 39.243,
+ "eval_steps_per_second": 1.237,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.01875605247914791,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.38484525680542,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.018568016588687897,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.3507912158966064,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.019872169941663742,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.353137969970703,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.01876811869442463,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.375810384750366,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.018586816266179085,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.399104595184326,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.020378353074193,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.3919358253479004,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.019244177266955376,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.3788328170776367,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.0193084217607975,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.3619728088378906,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.019315209239721298,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.3798677921295166,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.018572242930531502,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.3925108909606934,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.01862615905702114,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.351928234100342,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.01858530193567276,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.348261833190918,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.018370235338807106,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.392763376235962,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.019499799236655235,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.378734588623047,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.018300920724868774,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.375892400741577,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.018973981961607933,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.3861308097839355,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.01848417893052101,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.369990587234497,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.01829555258154869,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.3849124908447266,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.018444348126649857,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.3794360160827637,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.018307942897081375,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.385989189147949,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.0177899319678545,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.4433321952819824,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.017565859481692314,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.3808670043945312,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.017919441685080528,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.4058759212493896,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.017944026738405228,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.4076156616210938,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.01726466603577137,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.3993449211120605,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.01821359619498253,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.388521194458008,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.018399931490421295,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.355663776397705,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.018190836533904076,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.3569793701171875,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.017945483326911926,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.422205924987793,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.017825208604335785,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.405452251434326,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.018042994663119316,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.409529447555542,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.018815988674759865,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.3680338859558105,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.0177475456148386,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.3957064151763916,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.01767324097454548,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.426119565963745,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.017502157017588615,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.3860602378845215,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.01826084591448307,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.3443658351898193,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.018149342387914658,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.441053628921509,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.01743144541978836,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.369959831237793,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.018931198865175247,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.3382790088653564,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.01852957159280777,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.393571138381958,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.01744253933429718,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.4136338233947754,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.0188548993319273,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.420109748840332,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.01842757686972618,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.38987398147583,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.018423188477754593,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.3657498359680176,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.01937674544751644,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.3901844024658203,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.019053233787417412,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.39098858833313,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.018784556537866592,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.375641345977783,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.019018791615962982,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.3715341091156006,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.018060091882944107,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.385960578918457,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.019320931285619736,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.3708150386810303,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.018254855647683144,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.378389835357666,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.018344849348068237,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.3670427799224854,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.01864561252295971,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.3780577182769775,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.017792504280805588,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.3890440464019775,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.01926976628601551,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.399027109146118,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.01768679916858673,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.399245262145996,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.017078734934329987,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.3935627937316895,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.017845293506979942,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.4019460678100586,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.01667986437678337,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.3843274116516113,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.017841368913650513,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.420551300048828,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.01789095811545849,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.3795599937438965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.017387472093105316,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.404527425765991,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.017727486789226532,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.368422031402588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.018426265567541122,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.4203758239746094,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.017427532002329826,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.3813066482543945,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.01781563088297844,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.377004384994507,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.017903029918670654,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.390786647796631,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.018497183918952942,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.4222888946533203,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.017774127423763275,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.4386186599731445,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.017519637942314148,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.3773350715637207,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.017004752531647682,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.3996877670288086,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.021300921216607094,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.4059641361236572,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 3.9651381969451904,
+ "eval_runtime": 64.237,
+ "eval_samples_per_second": 38.015,
+ "eval_steps_per_second": 1.199,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.019478417932987213,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.346750259399414,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.022026486694812775,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.3380393981933594,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.021453749388456345,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.3837451934814453,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.018983036279678345,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.373610019683838,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.020668506622314453,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.338237762451172,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.02018234133720398,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.3517379760742188,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0184745155274868,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.33943247795105,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.019766638055443764,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.3328628540039062,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.01948261633515358,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.361790657043457,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.018952930346131325,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.364760398864746,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.019968921318650246,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.343646287918091,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.01876276172697544,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.3668432235717773,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.019649820402264595,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.3603689670562744,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.01976124383509159,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.342262029647827,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.018047695979475975,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.378164052963257,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.01947302557528019,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.3635683059692383,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.020197149366140366,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.3460724353790283,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.01838929019868374,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.318298578262329,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.01938267983496189,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.332218647003174,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.018450573086738586,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.3692564964294434,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.018261199817061424,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.389166831970215,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.019171850755810738,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.3596410751342773,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.018897389993071556,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.363556385040283,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.018566379323601723,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.3412210941314697,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.01843632012605667,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.3628649711608887,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.017748910933732986,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.3751392364501953,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.01864495314657688,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.378866195678711,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.01812228374183178,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.3596580028533936,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.017738813534379005,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.368849754333496,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.018312761560082436,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.400904893875122,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.018566720187664032,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.393960475921631,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.017562083899974823,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.3609988689422607,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.018859874457120895,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.3903446197509766,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.01862078160047531,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.3752737045288086,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.01797969825565815,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.349073648452759,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.018642215058207512,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.3744235038757324,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.01795344427227974,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.3494296073913574,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.01832517795264721,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.3772659301757812,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.018316779285669327,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.34093976020813,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.017998583614826202,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.3537893295288086,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.017405519261956215,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.36969256401062,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.017421456053853035,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.3762929439544678,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.017348214983940125,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.365250587463379,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.017987079918384552,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.3528800010681152,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.01740369200706482,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.34809947013855,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.01767742820084095,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.3873414993286133,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.01786552369594574,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.3993542194366455,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.01840440183877945,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.363851308822632,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.018372777849435806,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.377171516418457,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.018557261675596237,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.3954250812530518,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.018024763092398643,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.38138484954834,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.017409538850188255,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.396350145339966,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.01779399998486042,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.3993735313415527,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.01735842600464821,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.3483355045318604,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.01823486015200615,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.3715901374816895,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.017776019871234894,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.3903591632843018,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.018326254561543465,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.364900827407837,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.01827094703912735,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.3438186645507812,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.01754159666597843,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.3551652431488037,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.017510801553726196,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.3748109340667725,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.01735668070614338,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.403426170349121,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.017473991960287094,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.3682873249053955,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.017098890617489815,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.3883895874023438,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.01794300600886345,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.383709192276001,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.01804060861468315,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.405463457107544,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.018679164350032806,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.36195707321167,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.017713533714413643,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.4066250324249268,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.018171053379774094,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.410841464996338,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.017649803310632706,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.4168691635131836,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.018113741651177406,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.4131321907043457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.017961714416742325,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.3622546195983887,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.021376822143793106,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.376415252685547,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 3.9679276943206787,
+ "eval_runtime": 61.2959,
+ "eval_samples_per_second": 39.84,
+ "eval_steps_per_second": 1.256,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.01854010298848152,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.355283260345459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.021272754296660423,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.342026472091675,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.020176826044917107,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.318216562271118,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.019144972786307335,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.343742847442627,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.019824223592877388,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.313528060913086,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.020314225926995277,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.3193306922912598,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.02053622156381607,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.3684723377227783,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.01978791132569313,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.304171562194824,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.019836056977510452,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.3103976249694824,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.02083844691514969,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.3497042655944824,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.018737798556685448,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.344273805618286,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.01884191669523716,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.3651132583618164,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.01999213732779026,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.3661556243896484,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.018647730350494385,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.2864201068878174,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.02008436620235443,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.3176960945129395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.019128765910863876,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.342780590057373,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.018504656851291656,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.360694408416748,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.019251195713877678,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.353502035140991,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.0191155094653368,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.36004900932312,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.019309870898723602,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.3235840797424316,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.018641646951436996,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.303652763366699,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.019949378445744514,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.337285041809082,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.019760746508836746,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.3083724975585938,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.02001495286822319,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.3428544998168945,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.019619205966591835,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.3327627182006836,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.01893351785838604,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.3344879150390625,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.019357211887836456,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.3769724369049072,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.019030574709177017,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.3382792472839355,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.020675932988524437,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.352922201156616,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.020977795124053955,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.3025388717651367,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.018994763493537903,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.3722734451293945,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.019694602116942406,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.356004238128662,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.018226392567157745,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.382113456726074,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.01841692067682743,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.3366098403930664,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.019732195883989334,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.315749168395996,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.018796177580952644,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.387970209121704,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.019775379449129105,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.370443820953369,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.018852675333619118,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.3536925315856934,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.019294993951916695,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.370649814605713,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.01990549825131893,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.332792282104492,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.01898631826043129,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.3224639892578125,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.018629908561706543,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.335266590118408,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.018405716866254807,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.3959007263183594,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.01788157783448696,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.3351597785949707,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.020106187090277672,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.3679728507995605,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.017606457695364952,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.335587501525879,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.01863827370107174,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.342696189880371,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.019782640039920807,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.369798183441162,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.01814732886850834,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.3451857566833496,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.017988786101341248,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.346390962600708,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.01805048994719982,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.3384218215942383,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.01829634979367256,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.37813663482666,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.01829833723604679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.3628640174865723,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.018536243587732315,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.372694492340088,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.01803603768348694,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.380868434906006,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.017752433195710182,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.3762166500091553,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.01767779514193535,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.34380841255188,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.018236516043543816,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.402556896209717,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.017979485914111137,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.367926597595215,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.017993036657571793,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.346769332885742,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.018208203837275505,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.368234634399414,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.017628569155931473,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.361219882965088,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.018360665068030357,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.413729190826416,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.01757584512233734,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.3906946182250977,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.017810869961977005,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.343019485473633,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.018251191824674606,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.4060416221618652,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.017858365550637245,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.384634494781494,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.01818324811756611,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.384280204772949,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.018480699509382248,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.346285104751587,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.018677543848752975,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.3611297607421875,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.017619142308831215,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.3700506687164307,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.02169172652065754,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.377382278442383,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 3.9741594791412354,
+ "eval_runtime": 61.5554,
+ "eval_samples_per_second": 39.672,
+ "eval_steps_per_second": 1.251,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.018706079572439194,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.330112934112549,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.018803605809807777,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.2816882133483887,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.01853000745177269,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.2921040058135986,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.01803869754076004,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.2959041595458984,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.017079241573810577,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.347280502319336,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.018676968291401863,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.2957611083984375,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.017800159752368927,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.3546934127807617,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.018619297072291374,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.324152946472168,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.017725948244333267,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.3029189109802246,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.018584828823804855,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.339733839035034,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.018017224967479706,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.3224563598632812,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.018421247601509094,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.3387138843536377,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.017832159996032715,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.3309199810028076,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.01841033436357975,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.286250114440918,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.017978807911276817,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.309865951538086,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.018115395680069923,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.351820230484009,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.018109634518623352,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.339370012283325,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.018403902649879456,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.3475425243377686,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.018310097977519035,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.3355088233947754,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.018734650686383247,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.3085222244262695,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.018644677475094795,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.3448398113250732,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.017948374152183533,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.3107964992523193,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.018470020964741707,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.3356473445892334,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.018252935260534286,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.3303258419036865,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.019037144258618355,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.3195786476135254,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.01882040873169899,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.327070474624634,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.018461447209119797,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.381578207015991,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.019000960513949394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.310007333755493,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.018681352958083153,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.3152713775634766,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.018967652693390846,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.32594633102417,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.018034840002655983,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.3330178260803223,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.018646908923983574,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.3461005687713623,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.017740851268172264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.3342158794403076,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.018651707097887993,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.3133187294006348,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.018334193155169487,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.3243541717529297,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.017846569418907166,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.380344867706299,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.01923597976565361,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.3429012298583984,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.01741809956729412,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.3528919219970703,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.01906408555805683,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.2913482189178467,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.01799873635172844,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.3387508392333984,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.018642444163560867,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.3193347454071045,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.018173884600400925,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.363862991333008,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.017236918210983276,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.3342058658599854,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.01799003966152668,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.3633697032928467,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.01782006211578846,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.318671226501465,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.018514500930905342,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.3408515453338623,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.017743313685059547,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.342982292175293,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.01804332435131073,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.362891912460327,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.017191672697663307,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.36106014251709,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.018392067402601242,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.2962214946746826,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.018170949071645737,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.358933925628662,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.018051467835903168,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.3357250690460205,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.017690587788820267,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.372972011566162,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.018124736845493317,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.3036465644836426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.01832064613699913,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.322453737258911,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.017560303211212158,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.356179714202881,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.018004758283495903,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.3430850505828857,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.017548002302646637,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.32066011428833,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.017965545877814293,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.3743958473205566,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.017993371933698654,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.35526704788208,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.017911285161972046,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.333646059036255,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.01756276562809944,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.3324525356292725,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.01796603947877884,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.332352638244629,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.017659401521086693,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.3543365001678467,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.01766570471227169,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.319436550140381,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.017549576237797737,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.3728671073913574,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.018054332584142685,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.3571078777313232,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.01780802756547928,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.3745193481445312,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.017592715099453926,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.349599838256836,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.0175273809581995,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.326724052429199,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.01774190552532673,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.351414203643799,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.021057726815342903,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.355438709259033,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 3.980590343475342,
+ "eval_runtime": 64.0284,
+ "eval_samples_per_second": 38.139,
+ "eval_steps_per_second": 1.203,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.01852157898247242,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.279857635498047,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.01908745802938938,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.322187662124634,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.018606485798954964,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.3020753860473633,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.018377110362052917,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.2937381267547607,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.01929803378880024,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.323049545288086,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.019005702808499336,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.3179938793182373,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.017784560099244118,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.2982497215270996,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.01901211030781269,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.2964975833892822,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.018238209187984467,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.339160919189453,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.019134020432829857,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.2996795177459717,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.01800241880118847,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.3076975345611572,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.018778108060359955,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.325648546218872,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.018111059442162514,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.2866837978363037,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.01902944967150688,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.2555606365203857,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.017556916922330856,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.318284511566162,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.018638404086232185,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.327514410018921,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.018207989633083344,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.3031258583068848,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.017383132129907608,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.2900843620300293,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.018838368356227875,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.316427707672119,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.01785479672253132,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.307969570159912,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.01844528131186962,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.3244309425354004,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.018888844177126884,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.2731080055236816,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.018467606976628304,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.335411548614502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.019145434722304344,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.3307838439941406,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.018448568880558014,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.3589491844177246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.01844393089413643,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.281749725341797,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.01864924281835556,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.3394992351531982,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.01843435876071453,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.335958480834961,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.018971994519233704,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.3345675468444824,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.01797044463455677,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.311155080795288,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.01953919045627117,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.305577039718628,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.01805555634200573,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.334611415863037,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.01828804239630699,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.321223020553589,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.018457863479852676,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.301429271697998,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.019404536113142967,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.2790372371673584,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.017915820702910423,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.3662614822387695,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.018640510737895966,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.327456474304199,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.01786927878856659,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.314758777618408,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.018386350944638252,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.3035807609558105,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.017978228628635406,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.2823503017425537,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.01857025735080242,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.317556142807007,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.0184731837362051,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.3500728607177734,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.018545255064964294,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.3015494346618652,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.017906157299876213,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.3649752140045166,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.018221359699964523,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.3162622451782227,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.018429694697260857,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.297499179840088,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.01882862113416195,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.3677923679351807,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.018744835630059242,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.3383946418762207,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.01775563322007656,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.3351221084594727,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.01871674694120884,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.3395285606384277,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.018029795959591866,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.2882657051086426,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.018112031742930412,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.319117307662964,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.018760433420538902,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.3635196685791016,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.01821206696331501,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.309791088104248,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.018608879297971725,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.3308310508728027,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.019123248755931854,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.3186330795288086,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.018079813569784164,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.33872127532959,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.01852683164179325,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.315091609954834,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.01769738830626011,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.3373889923095703,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.019215177744627,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.335101366043091,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.017887922003865242,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.329543352127075,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.018720639869570732,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.3355422019958496,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.017772076651453972,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.302229881286621,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.01804286427795887,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.3566503524780273,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.017627401277422905,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.334893226623535,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.017679693177342415,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.2954065799713135,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.018215391784906387,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.3217079639434814,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.017763664945960045,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.3080391883850098,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.018400657922029495,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.360480785369873,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.017310120165348053,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.332749366760254,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.01732005923986435,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.3023996353149414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.02136695571243763,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.3171167373657227,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.9839487075805664,
+ "eval_runtime": 64.4777,
+ "eval_samples_per_second": 37.874,
+ "eval_steps_per_second": 1.194,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.018628792837262154,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.3085525035858154,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.01934065669775009,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.275996446609497,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.019491534680128098,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.301079750061035,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.01831379532814026,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.296050786972046,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.018555769696831703,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.2560927867889404,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.01922718994319439,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.3310370445251465,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.018664665520191193,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.2992236614227295,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.01841133087873459,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.25832200050354,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.02053012326359749,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.2908620834350586,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.01921696588397026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.259072780609131,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.018401997163891792,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.301300525665283,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.019370075315237045,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.2989721298217773,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.01793838106095791,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.2667601108551025,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.018552329391241074,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.321544885635376,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.018189920112490654,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.2556686401367188,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.017952604219317436,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.2973861694335938,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.01864135079085827,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.312366485595703,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.018349099904298782,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.2565629482269287,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.018149899318814278,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.29868745803833,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.01827981509268284,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.292799711227417,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.01792013831436634,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.321580410003662,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.017162339761853218,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.2954297065734863,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.018131613731384277,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.3083887100219727,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.01798122748732567,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.3444621562957764,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.017841525375843048,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.3026833534240723,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.01803119294345379,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.281219720840454,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.018162449821829796,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.277799367904663,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.018028786405920982,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.2889952659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.017529798671603203,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.313809871673584,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.01811928115785122,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.333418369293213,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.01779293268918991,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.293541193008423,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.018098467960953712,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.2701730728149414,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.017646370455622673,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.309724807739258,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.019019491970539093,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.2928850650787354,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.017994478344917297,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.3098504543304443,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.018143892288208008,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.2963194847106934,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.01818154565989971,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.2958524227142334,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.0183187797665596,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.2874345779418945,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.017786474898457527,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.2910757064819336,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.017657335847616196,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.299335479736328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.017966900020837784,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.331350564956665,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.017846832051873207,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.3195853233337402,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.018276406452059746,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.2835865020751953,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.018248995766043663,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.3075971603393555,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.01825234480202198,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.323974132537842,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.0178872998803854,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.277646541595459,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.017811937257647514,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.262815475463867,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.018097421154379845,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.2911031246185303,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.017817489802837372,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.291011095046997,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.017519952729344368,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.3111133575439453,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.018086353316903114,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.29461669921875,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.017423808574676514,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.316877841949463,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.01739143580198288,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.343290328979492,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.017492949962615967,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.2867960929870605,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.01771623082458973,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.337468147277832,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.017315423116087914,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.3162851333618164,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.017791584134101868,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.2925267219543457,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.01794111542403698,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.324666738510132,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.017818832769989967,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.314690351486206,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.018544992431998253,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.3311715126037598,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.01775962859392166,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.3389463424682617,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.018356498330831528,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.3347792625427246,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.018026728183031082,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.2906317710876465,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.018123000860214233,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.3188047409057617,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.018297648057341576,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.3061704635620117,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.017799632623791695,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.3368611335754395,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.017928048968315125,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.326777458190918,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.018105698749423027,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.3189263343811035,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.017497455701231956,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.37094783782959,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.018238704651594162,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.371366500854492,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.018718887120485306,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.3076930046081543,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.022466568276286125,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.325347423553467,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 3.989081859588623,
+ "eval_runtime": 61.2795,
+ "eval_samples_per_second": 39.85,
+ "eval_steps_per_second": 1.257,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.018786108121275902,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.2681350708007812,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.02124481461942196,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.281920909881592,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.01866064965724945,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.2950901985168457,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.019922351464629173,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.2939810752868652,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.018888959661126137,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.2506773471832275,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.01963820308446884,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.243678331375122,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.019207993522286415,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.2991080284118652,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.018969031050801277,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.264408588409424,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.019303269684314728,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.269500732421875,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.018705174326896667,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.257845401763916,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.019264446571469307,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.263430595397949,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.018027326092123985,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.28702449798584,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.019376209005713463,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.252567768096924,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.018585721030831337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.24939227104187,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.01962319202721119,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.2504074573516846,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.018904808908700943,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.2754735946655273,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.020670494064688683,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.3274216651916504,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.019269540905952454,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.277693033218384,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.01851348951458931,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.30722713470459,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.019418980926275253,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.2839508056640625,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.018420031294226646,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.2727484703063965,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.01860026642680168,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.2800397872924805,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.018214095383882523,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.2605395317077637,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.018570467829704285,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.298377275466919,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.018116766586899757,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.2953498363494873,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.018491394817829132,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.269218921661377,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.018195809796452522,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.2816600799560547,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.01736897975206375,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.304725170135498,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.018366357311606407,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.2991557121276855,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.01782357692718506,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.2722220420837402,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.017849192023277283,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.2539634704589844,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.017683928832411766,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.2979817390441895,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.017911190167069435,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.286712646484375,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.018424000591039658,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.292938232421875,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.01728540100157261,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.2891898155212402,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.018603453412652016,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.317518711090088,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.018080297857522964,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.273111581802368,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.018728841096162796,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.3038439750671387,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.018404530361294746,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.267301082611084,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.01816863939166069,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.2716097831726074,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.01830720156431198,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.278252601623535,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.017528850585222244,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.2902517318725586,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.017734181135892868,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.326822519302368,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.017636269330978394,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.296706199645996,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.01809834875166416,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.2940311431884766,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.017481546849012375,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.2835071086883545,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.01803549937903881,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.2979648113250732,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.017897363752126694,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.298192024230957,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.017886117100715637,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.2528061866760254,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.017787186428904533,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.3079915046691895,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.017887486144900322,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.2916650772094727,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.017394157126545906,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.278643846511841,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.018659798428416252,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.3291149139404297,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.017590660601854324,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.273383617401123,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.017796199768781662,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.287100315093994,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.017697831615805626,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.289719343185425,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.01766834408044815,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.3088066577911377,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.017558623105287552,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.310497760772705,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.017388205975294113,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.301988363265991,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.01780710741877556,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.3257439136505127,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.017604323104023933,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.327035903930664,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.017286553978919983,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.321244478225708,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.017773570492863655,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.309398651123047,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.016913311555981636,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.292271614074707,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.018218258395791054,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.2950148582458496,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.01737598143517971,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.2862462997436523,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.01744207926094532,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.305614709854126,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.017681103199720383,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.307971239089966,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.01783016137778759,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.307300567626953,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0171083752065897,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.3298232555389404,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.01770375855267048,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.2668328285217285,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.021273743361234665,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.2889244556427,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.996196985244751,
+ "eval_runtime": 61.3281,
+ "eval_samples_per_second": 39.819,
+ "eval_steps_per_second": 1.256,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.018618006259202957,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.286426067352295,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.019142355769872665,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.271833896636963,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.018891366198658943,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.2249698638916016,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0181980412453413,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.2540817260742188,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.01890307106077671,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.2274742126464844,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.017948197200894356,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.271634578704834,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.0183399748057127,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.2752885818481445,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.01843700371682644,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.239213466644287,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.0186455175280571,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.262913227081299,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.018880294635891914,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.279811382293701,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.018527936190366745,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.265861749649048,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.01842155121266842,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.2417643070220947,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.01889784075319767,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.277313709259033,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.01868009753525257,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.294278860092163,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.01869044452905655,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.2623791694641113,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.018669607117772102,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.2748589515686035,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.019066302105784416,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.2807693481445312,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.018781524151563644,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.267548084259033,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.01900012046098709,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.268430233001709,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.01811046153306961,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.249452829360962,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.01891542598605156,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.2876968383789062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.018590277060866356,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.2591049671173096,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.018163183704018593,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.27728271484375,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.018146511167287827,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.2909622192382812,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.018476741388440132,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.275810480117798,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.019072428345680237,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.270618200302124,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.01850801706314087,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.2636537551879883,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.018887825310230255,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.2576699256896973,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.018549323081970215,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.233875036239624,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.019004428759217262,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.317328453063965,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.018481610342860222,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.2798519134521484,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.018844828009605408,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.2724647521972656,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.017980510368943214,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.2837905883789062,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.01842239312827587,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.282580852508545,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.01806344836950302,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.2639782428741455,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.018828753381967545,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.2765626907348633,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.018340127542614937,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.279996395111084,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.018503865227103233,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.291977643966675,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.018294846639037132,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.26834774017334,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.01829240843653679,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.2692995071411133,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.019312310963869095,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.306288719177246,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.018151750788092613,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.2955055236816406,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.01843264140188694,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.2564001083374023,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.01815878413617611,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.309749126434326,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.018385276198387146,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.2828011512756348,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.017592385411262512,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.2743144035339355,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.01778801716864109,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.3009839057922363,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.01784433424472809,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.270941734313965,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.017775509506464005,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.294405937194824,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.01790355145931244,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.3317418098449707,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.01766853779554367,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.2788710594177246,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.018095338717103004,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.3081836700439453,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.017551491037011147,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.302518367767334,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.018155159428715706,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.2757461071014404,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.01776544377207756,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.2773022651672363,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.017995497211813927,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.281576633453369,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.017745571210980415,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.299907922744751,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.018981626257300377,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.2928647994995117,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.01794815994799137,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.288900852203369,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.017981866374611855,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.3037233352661133,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.017933540046215057,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.3035197257995605,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.017871227115392685,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.3012588024139404,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.01812930777668953,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.274885892868042,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.017512621358036995,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.2652831077575684,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.01803465560078621,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.2784218788146973,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.017772581428289413,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.2738118171691895,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.017899878323078156,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.2543373107910156,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.017925484105944633,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.2831292152404785,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.017964687198400497,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.2785139083862305,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.01768588088452816,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.272413492202759,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.017593499273061752,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.2786943912506104,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.02263619564473629,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.2331840991973877,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.997504234313965,
+ "eval_runtime": 68.6017,
+ "eval_samples_per_second": 35.597,
+ "eval_steps_per_second": 1.122,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.018983691930770874,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.241229295730591,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.01769745722413063,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.244720220565796,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.01940307579934597,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.235339641571045,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.017714716494083405,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.2247347831726074,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.018448829650878906,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.270392656326294,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.017696617171168327,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.254031181335449,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.01945924013853073,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.253511905670166,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.01757945865392685,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.2771854400634766,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.018575280904769897,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.238738536834717,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.01795017346739769,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.270235538482666,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.01872493326663971,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.2378664016723633,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.01798509620130062,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.254434823989868,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.018167544156312943,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.250739574432373,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.01762092299759388,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.2840588092803955,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.01831229031085968,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.267660140991211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.01808358170092106,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.2154972553253174,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.017941338941454887,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.2377076148986816,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.01809528097510338,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.2710723876953125,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.01749086193740368,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.240135669708252,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.01763586327433586,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.2628841400146484,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.018280034884810448,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.2516636848449707,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.01793629862368107,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.285431385040283,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.01772841066122055,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.25602388381958,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.017574705183506012,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.245393753051758,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.017750296741724014,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.2361996173858643,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.01791345328092575,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.290215492248535,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.017766227945685387,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.257805585861206,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.01831849105656147,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.269528865814209,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.01814088225364685,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.261806011199951,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.01830805465579033,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.305274248123169,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.018372246995568275,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.263526678085327,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.01808883436024189,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.243898391723633,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.01745104044675827,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.2864532470703125,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.017856569960713387,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.21815824508667,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.01895907334983349,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.267364978790283,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.01753549836575985,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.2781548500061035,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.018666768446564674,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.225311756134033,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.018031692132353783,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.259636878967285,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.01837204024195671,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.301126003265381,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.01839369907975197,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.2295851707458496,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.018085381016135216,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.263286590576172,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.01798195205628872,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.283132791519165,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.018151475116610527,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.2986037731170654,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.017622441053390503,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.2850263118743896,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.01746201701462269,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.2642040252685547,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.017317142337560654,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.2261276245117188,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.01808793842792511,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.2630279064178467,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.017382370308041573,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.2685937881469727,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.01744145341217518,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.2540926933288574,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.017300108447670937,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.3077826499938965,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.017657684162259102,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.256051540374756,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.01778305135667324,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.2528152465820312,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.017506316304206848,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.274245262145996,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.01796594075858593,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.242635726928711,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.01722782291471958,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.2392749786376953,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.018115712329745293,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.2796077728271484,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.01787315122783184,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.2541041374206543,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.01759975031018257,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.312413215637207,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.017858082428574562,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.268305540084839,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.01754104346036911,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.2324278354644775,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.01789918914437294,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.279139995574951,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.017921460792422295,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.260338544845581,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.018311934545636177,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.279531955718994,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.01787002570927143,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.3422956466674805,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.018116366118192673,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.2641375064849854,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.01823844201862812,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.298542022705078,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.017788249999284744,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.273583173751831,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.017676375806331635,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.2824862003326416,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.017663495615124702,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.268880605697632,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.017920266836881638,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.28188157081604,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.017840363085269928,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.295778751373291,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.021651441231369972,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.2805123329162598,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.003090858459473,
+ "eval_runtime": 63.849,
+ "eval_samples_per_second": 38.246,
+ "eval_steps_per_second": 1.206,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.01956116035580635,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.2226920127868652,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.01807370036840439,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.2155508995056152,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.019413387402892113,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.2068796157836914,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.018032673746347427,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.23478364944458,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.01879831776022911,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.216125249862671,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.01816883310675621,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.291840076446533,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.01887478679418564,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.2400455474853516,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.01869991049170494,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.234286069869995,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.01881302334368229,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.2403011322021484,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.01813030056655407,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.2345221042633057,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.01873958483338356,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.269077777862549,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.01780061610043049,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.205399513244629,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.01844349317252636,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.191356658935547,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.01831045188009739,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.2332935333251953,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.017539450898766518,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.2783172130584717,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.01822333224117756,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.2451915740966797,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.017310652881860733,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.2773776054382324,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.017784686759114265,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.260366439819336,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.017756391316652298,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.2379889488220215,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.018218601122498512,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.2328624725341797,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.017498090863227844,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.2771708965301514,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.017671575769782066,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.2608582973480225,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.017075426876544952,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.2639667987823486,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.017231155186891556,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.2379541397094727,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.017439233139157295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.2063727378845215,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.01732606254518032,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.2259323596954346,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.017213711515069008,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.262057065963745,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.017605315893888474,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.2544336318969727,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.017422683537006378,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.2487425804138184,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.017587704584002495,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.270930290222168,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.017578281462192535,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.2582998275756836,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.017422989010810852,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.230900287628174,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.017262905836105347,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.260876178741455,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.01753116026520729,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.2794618606567383,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.017901718616485596,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.2977700233459473,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.01739160530269146,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.2062416076660156,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.017803272232413292,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.2721927165985107,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.01744180917739868,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.223621368408203,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.01748846098780632,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.2446537017822266,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.018154891207814217,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.2774620056152344,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.017660103738307953,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.256049156188965,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.017895042896270752,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.2390687465667725,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.01810084655880928,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.2590980529785156,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.01777142658829689,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.2521610260009766,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.017798084765672684,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.2923569679260254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.017959048971533775,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.2694578170776367,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.017739834263920784,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.276766777038574,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.017685972154140472,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.2840123176574707,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.017836326733231544,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.2199149131774902,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.01754208654165268,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.26906156539917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.01764521561563015,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.240112066268921,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.01754322275519371,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.2251625061035156,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.017735576257109642,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.2564854621887207,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.01783844828605652,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.3034374713897705,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.01781659945845604,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.2717790603637695,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.01788412407040596,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.253129720687866,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.01771196350455284,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.2762832641601562,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.017484815791249275,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.2821648120880127,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.017767874523997307,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.272578239440918,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.017588794231414795,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.2206339836120605,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.017551198601722717,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.260745048522949,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.0174455177038908,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.2688534259796143,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.017540588974952698,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.2458150386810303,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.017331562936306,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.2577664852142334,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.01767123118042946,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.2621970176696777,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.01742144301533699,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.2672641277313232,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.017617376521229744,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.2620532512664795,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.01754932478070259,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.2286524772644043,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.01754574291408062,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.2759151458740234,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.017384039238095284,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.2592954635620117,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.017610175535082817,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.2805817127227783,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.02227424643933773,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.2429699897766113,
+ "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/l2r50-baseline/checkpoint-2880/training_args.bin b/runs/l2r50-baseline/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-3240/chat_template.jinja b/runs/l2r50-baseline/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/config.json b/runs/l2r50-baseline/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/generation_config.json b/runs/l2r50-baseline/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/model.safetensors b/runs/l2r50-baseline/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e4ff1f75f661565d13c60f99a386a60f0deac165
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:61bb13239c8d8080ec4de266888e3e6d616ff53697a272ce760d82e46d8c7021
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-3240/optimizer.pt b/runs/l2r50-baseline/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..68817cbec54f65e1eaca8c1669c2a260af6f0bc9
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:96a3a90a9a5d5a1dd64761bdc4471a107d1539484144d4f70c783d2d5e109b69
+size 1166827898
diff --git a/runs/l2r50-baseline/checkpoint-3240/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..03a3cf3ac5f2494e2e8da8d0950115c2ccc72e58
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:87ef313648fca4db6856222ba9d5b377ce9c78e1b0b773915470c174d8c1c2c1
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3240/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1d17deed2fc60410da20d54a2fbecb4d346413b2
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:667ef72d8ecb4d5779e98d21e507df93f664be0f5a602938961f1e875275982c
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3240/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-3240/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bcc6f0655376c0e1e22412736914a5726b35023a
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79a799e6c6d9bf9f5dc43e611788e95f712fea0df4ce951955e0ef5ae1737ed7
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3240/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-3240/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..76a15cd64874a20e370ab87f745baa61cd9ca761
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:063fb8860cd08a9d7dffc329c1b857f2c84f027b83d2d31f9589ce8e5d92bba5
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3240/scheduler.pt b/runs/l2r50-baseline/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84479f3138d6041f59e136173e080a0ddbdf81b1
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/tokenizer.json b/runs/l2r50-baseline/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3240/trainer_state.json b/runs/l2r50-baseline/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..55cb19b9218d8cc686bd7ca2b5d5e47cb5df886b
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/trainer_state.json
@@ -0,0 +1,23058 @@
+{
+ "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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 3.9668192863464355,
+ "eval_runtime": 59.7448,
+ "eval_samples_per_second": 40.874,
+ "eval_steps_per_second": 1.289,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.01895272172987461,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.4655308723449707,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.0206465981900692,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.456347942352295,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.021339893341064453,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.4679999351501465,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.021127765998244286,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.4543442726135254,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.02075084298849106,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.4941041469573975,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.020014401525259018,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.4785819053649902,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.019297510385513306,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.5006165504455566,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.020143838599324226,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.5038743019104004,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.019436940550804138,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.4647061824798584,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.019416574388742447,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.4757144451141357,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.018273303285241127,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.4821829795837402,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.0193482618778944,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.486717939376831,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.018939225003123283,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.4995615482330322,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.018757406622171402,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.478853702545166,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.018794208765029907,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.4686648845672607,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.019849533215165138,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.44936466217041,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.017794709652662277,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.4726390838623047,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.018498266115784645,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.4935479164123535,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.020185040310025215,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.4993715286254883,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.0197488684207201,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.488629102706909,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.018577605485916138,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.463611364364624,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.018072819337248802,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.433458089828491,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.017909955233335495,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.46743106842041,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.017891421914100647,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.510708808898926,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.017307734116911888,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.4369726181030273,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.019437436014413834,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.483191967010498,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.020199673250317574,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.506659507751465,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.018461620435118675,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.52777361869812,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.018418388441205025,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.4900410175323486,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.019452253356575966,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.4596498012542725,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.01981848105788231,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.5019569396972656,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.019489169120788574,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.493274688720703,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.017666205763816833,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.4854674339294434,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.018194179981946945,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.464219093322754,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.018553493544459343,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.52459716796875,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.018783342093229294,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.4779176712036133,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.018300117924809456,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.4834327697753906,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.016716109588742256,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.5340709686279297,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.0180519986897707,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.4652693271636963,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.017762597650289536,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.520275115966797,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.016915665939450264,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.484226703643799,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.017562730237841606,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.503143787384033,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.017763083800673485,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.5216102600097656,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.017134003341197968,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.459318161010742,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.017334967851638794,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.503740072250366,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.018297912552952766,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.5073437690734863,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.016978446394205093,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.479010581970215,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.018022775650024414,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.4845454692840576,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.017773890867829323,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.511157751083374,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.017100736498832703,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.5245039463043213,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.01903403550386429,
+ "learning_rate": 0.000303,
+ "loss": 3.5196127891540527,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.019149888306856155,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.529757022857666,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.017584891989827156,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.4859747886657715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.017863815650343895,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.531475067138672,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.01691904291510582,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.5179905891418457,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.016864124685525894,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.454268217086792,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.017918378114700317,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.5012617111206055,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.01676037721335888,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.5219480991363525,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.01847025193274021,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.5377297401428223,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.018975937739014626,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.507004976272583,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.016559354960918427,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.4815826416015625,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.018526967614889145,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.515927314758301,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.017936473712325096,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.5180106163024902,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.016746483743190765,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.49497652053833,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.016190055757761,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.5065670013427734,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.01770264096558094,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.520918369293213,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.018389247357845306,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.5104870796203613,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.01625588908791542,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.5063014030456543,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.018390661105513573,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.4983432292938232,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.017851997166872025,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.4671382904052734,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.01709488220512867,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.5293564796447754,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.020290598273277283,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.4583382606506348,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 3.963580846786499,
+ "eval_runtime": 59.72,
+ "eval_samples_per_second": 40.891,
+ "eval_steps_per_second": 1.289,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.020780518651008606,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.4834160804748535,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.025042658671736717,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.444469928741455,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.0249223243445158,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.471982002258301,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.022936193272471428,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.444572687149048,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.020676013082265854,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.4065611362457275,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.02019929699599743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.4570608139038086,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.02004287950694561,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.484922409057617,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.02029941976070404,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.4986963272094727,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.020057478919625282,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.445338487625122,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.02228299155831337,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.483475923538208,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.02322900854051113,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.4487721920013428,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.02177809737622738,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.446108341217041,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.019677769392728806,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.4320807456970215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.019688908010721207,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.4385204315185547,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.022444449365139008,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.454873561859131,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.02132454887032509,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.417757987976074,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.019102852791547775,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.4758338928222656,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.019153913483023643,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.4548845291137695,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.018708474934101105,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.41184139251709,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.018964219838380814,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.4620611667633057,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.01894865743815899,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.462468147277832,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.01778542436659336,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.4635019302368164,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.01781347393989563,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.4695935249328613,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.018062470480799675,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.4512240886688232,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.018868396058678627,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.478242874145508,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.018648196011781693,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.488654613494873,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.01821073703467846,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.415480613708496,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.017095481976866722,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.4678256511688232,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.019249994307756424,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.4535183906555176,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.01782015897333622,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.4813966751098633,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.01768648251891136,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.4406304359436035,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.018398065119981766,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.5028929710388184,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.018166350200772285,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.4500198364257812,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.017817072570323944,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.479569911956787,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.017651008442044258,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.487365484237671,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.017052030190825462,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.4818499088287354,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.016867922618985176,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.458005905151367,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.019170604646205902,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.4821205139160156,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.01869809441268444,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.461486339569092,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.017185309901833534,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.4753856658935547,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.018102167174220085,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.5052707195281982,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.01819782890379429,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.4518673419952393,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.019287217408418655,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.4718570709228516,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.019887477159500122,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.521130084991455,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.01915234513580799,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.469726085662842,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.017925266176462173,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.4749679565429688,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.017552683129906654,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.492969274520874,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.018236950039863586,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.4670491218566895,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.01720520667731762,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.4750189781188965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.01775733195245266,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.479222536087036,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.01812276616692543,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.459787607192993,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.01904568076133728,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.5087194442749023,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.01938941702246666,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.446824550628662,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.019309647381305695,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.491738796234131,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.017283691093325615,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.493600368499756,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.016226667910814285,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.475055694580078,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.018183575943112373,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.4631152153015137,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.018759222701191902,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.4848737716674805,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.01769597828388214,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.434507131576538,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.018075186759233475,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.4512555599212646,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.01827143132686615,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.4821510314941406,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.016271373257040977,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.527249574661255,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.01738668791949749,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.496260643005371,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.01751634106040001,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.489319324493408,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.01708020083606243,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.522711753845215,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.01802200637757778,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.468125104904175,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.01686692237854004,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.473863124847412,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.018587907776236534,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.4831924438476562,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.01865585334599018,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.5089101791381836,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.018999487161636353,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.466235876083374,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.01811971701681614,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.487901210784912,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.019976072013378143,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.5207200050354004,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 3.9621336460113525,
+ "eval_runtime": 61.1865,
+ "eval_samples_per_second": 39.911,
+ "eval_steps_per_second": 1.258,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.019912846386432648,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.3985512256622314,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.024092121049761772,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.418576955795288,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.025791682302951813,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.438657522201538,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.02268844284117222,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.40936017036438,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.019450107589364052,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.4093122482299805,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.019663041457533836,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.4370360374450684,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.02180861309170723,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.401123523712158,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.019850924611091614,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.4346837997436523,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.01967731863260269,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.4286041259765625,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.021333033218979836,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.4089221954345703,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.019694557413458824,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.4345288276672363,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.019076067954301834,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.3857693672180176,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.019870081916451454,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.4427146911621094,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.019260870292782784,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.4654557704925537,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.019225789234042168,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.4689555168151855,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.018402278423309326,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.413832664489746,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.01897112838923931,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.463106632232666,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.017959903925657272,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.4246349334716797,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.01858312077820301,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.428595542907715,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.018829360604286194,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.431976318359375,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.01736574061214924,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.4456610679626465,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.018335754051804543,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.4379255771636963,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.017936233431100845,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.4841232299804688,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.01732073538005352,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.4084701538085938,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.01764756441116333,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.434319257736206,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.01841113530099392,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.48443341255188,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.018168708309531212,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.447305679321289,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.017524663358926773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.444819927215576,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02032609097659588,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.431865692138672,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.018760820850729942,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.4857521057128906,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.01954142563045025,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.4749484062194824,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.01863463968038559,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.4594125747680664,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.018121957778930664,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.462247848510742,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.020321296527981758,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.473355770111084,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.020091157406568527,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.44814395904541,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.018810130655765533,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.4815800189971924,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.01748197339475155,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.4565114974975586,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.01935272477567196,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.4282071590423584,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.020307231694459915,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.4802942276000977,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.018399840220808983,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.4127840995788574,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.017388368025422096,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.4655821323394775,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.017165357246994972,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.4485411643981934,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.018523339182138443,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.463998556137085,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.017113015055656433,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.4211177825927734,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.01753869280219078,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.4926679134368896,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.01966564543545246,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.4498205184936523,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.018401050940155983,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.4501113891601562,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.017483070492744446,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.444553852081299,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.017510205507278442,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.4368369579315186,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.017599117010831833,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.4243321418762207,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.017932835966348648,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.4390244483947754,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.017309516668319702,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.4360458850860596,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.01870712824165821,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.458862781524658,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.018164832144975662,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.436872959136963,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.019033480435609818,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.4607229232788086,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.01908167265355587,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.4636034965515137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.01771005615592003,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.445199489593506,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.017116276547312737,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.476942539215088,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.018403125926852226,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.483548641204834,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.01699613407254219,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.4688446521759033,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.017341643571853638,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.4211671352386475,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.017147235572338104,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.465404510498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.01729694940149784,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.4884610176086426,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.017307840287685394,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.4440464973449707,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.01669687032699585,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.4840574264526367,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.01770629547536373,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.473775863647461,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.018066268414258957,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.46079158782959,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.01776258274912834,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.4646782875061035,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.01719190552830696,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.465542793273926,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.017640043050050735,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.479426860809326,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.018124815076589584,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.469224452972412,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.020947884768247604,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.4448342323303223,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 3.961923599243164,
+ "eval_runtime": 60.6839,
+ "eval_samples_per_second": 40.241,
+ "eval_steps_per_second": 1.269,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.018345043063163757,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.3847005367279053,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.024673614650964737,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.3936479091644287,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.023461783304810524,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.4155068397521973,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.02139718271791935,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.4172348976135254,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.022412599995732307,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.422422409057617,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.023503335192799568,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.4016504287719727,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.02148125134408474,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.4122307300567627,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.02075907029211521,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.4226012229919434,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.021128104999661446,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.4198601245880127,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.020960180088877678,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.4601449966430664,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.02125578559935093,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.4069151878356934,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.019701316952705383,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.461728572845459,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.01824156567454338,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.418145179748535,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.020667055621743202,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.4467804431915283,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.018905561417341232,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.419218063354492,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.01803084835410118,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.4285359382629395,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.018299192190170288,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.4270992279052734,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.01827562414109707,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.417841911315918,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.0181428212672472,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.417778730392456,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.018655981868505478,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.4135940074920654,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.018191451206803322,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.436255931854248,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.018264364451169968,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.395883560180664,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.01833369955420494,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.424318790435791,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.01866809092462063,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.392127513885498,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.017266878858208656,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.3780999183654785,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.01782945729792118,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.441495656967163,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.019177967682480812,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.432274341583252,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.018710168078541756,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.370002269744873,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.01873788796365261,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.4115757942199707,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.018670711666345596,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.407710313796997,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.016954626888036728,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.4291176795959473,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.017591385170817375,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.4588255882263184,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.01834861934185028,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.4035706520080566,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.017938101664185524,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.401681900024414,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.017014481127262115,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.4659478664398193,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.018274560570716858,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.413947105407715,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.017524776980280876,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.4482595920562744,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.017516497522592545,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.4256112575531006,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.017602261155843735,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.464900016784668,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.01672697253525257,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.4517221450805664,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.018115540966391563,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.455399990081787,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.017758352681994438,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.382112503051758,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.01796640083193779,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.379214286804199,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.018408501520752907,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.4585118293762207,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.017774110659956932,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.4428935050964355,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.019005993381142616,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.430894374847412,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.01825624890625477,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.398871898651123,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.017513982951641083,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.458927631378174,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.018035512417554855,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.4393792152404785,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.017681388184428215,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.420281410217285,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.01752026565372944,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.421967029571533,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.017383750528097153,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.488022804260254,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.017369642853736877,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.4330923557281494,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.017170915380120277,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.4847517013549805,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.018619880080223083,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.445941925048828,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.017903277650475502,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.4373133182525635,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.017392519861459732,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.4088053703308105,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.018057744950056076,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.3827738761901855,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.018045147880911827,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.4172282218933105,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.01774677447974682,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.4111135005950928,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.018675483763217926,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.4543533325195312,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.01890777423977852,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.436513662338257,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.01714302785694599,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.4339404106140137,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.01799493283033371,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.487741231918335,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.018368041142821312,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.4808623790740967,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.018794607371091843,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.4406328201293945,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.018004035577178,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.4440250396728516,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.01753157377243042,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.4302077293395996,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.017021680250763893,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.408231735229492,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.017755234614014626,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.4298901557922363,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.017229322344064713,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.448316812515259,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.01962321437895298,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.4169070720672607,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 3.9616544246673584,
+ "eval_runtime": 65.9803,
+ "eval_samples_per_second": 37.011,
+ "eval_steps_per_second": 1.167,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.019193001091480255,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.4050145149230957,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.019462959840893745,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.3970870971679688,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.01883731596171856,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.4042983055114746,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.018952246755361557,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.385344982147217,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.01955745369195938,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.3938591480255127,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.018866099417209625,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.373230218887329,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.01949951983988285,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.3986949920654297,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.019971610978245735,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.360102891921997,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.019477443769574165,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.392760992050171,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.018458299338817596,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.3768515586853027,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.0199594683945179,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.3532989025115967,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.01768285408616066,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.392155170440674,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.01838548295199871,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.352297782897949,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.019307192414999008,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.4088239669799805,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.01806057058274746,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.397526264190674,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.017745690420269966,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.403240203857422,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.01854657381772995,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.378720283508301,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.017849335446953773,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.4231362342834473,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.01832255721092224,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.3873050212860107,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.017942968755960464,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.4016880989074707,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.01710812747478485,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.3777270317077637,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.018718259409070015,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.386936664581299,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.019576137885451317,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.4325475692749023,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.019076485186815262,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.3955230712890625,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.019532006233930588,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.3632805347442627,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.019326776266098022,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.4010233879089355,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.018273938447237015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.347320079803467,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.018561091274023056,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.433877468109131,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.018709097057580948,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.4183356761932373,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.018022265285253525,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.4214649200439453,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.01795581355690956,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.4257490634918213,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.018068306148052216,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.4248106479644775,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.01741054281592369,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.4057626724243164,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.01920531503856182,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.419201612472534,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.020076720044016838,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.364243507385254,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.019320771098136902,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.4166758060455322,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.018370522186160088,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.3875954151153564,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.018850428983569145,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.4547061920166016,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.01825353503227234,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.421639919281006,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.019217118620872498,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.389070987701416,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.018638942390680313,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.407712936401367,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.017846768721938133,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.4532341957092285,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.018291272222995758,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.4042930603027344,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.017709648236632347,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.421402931213379,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.017348773777484894,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.41768741607666,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0190060343593359,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.401763677597046,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.018145151436328888,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.4228663444519043,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.017218708992004395,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.4383559226989746,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.01807982474565506,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.441455841064453,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.017581624910235405,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.417386770248413,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.016385234892368317,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.430408239364624,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.018257347866892815,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.441180944442749,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.016987234354019165,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.3837966918945312,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.018253926187753677,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.4105005264282227,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.017789114266633987,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.396979570388794,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.017308581620454788,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.444622039794922,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.017247803509235382,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.407770872116089,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.01750587485730648,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.4184064865112305,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.018543049693107605,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.414088249206543,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.017576420679688454,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.4110798835754395,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.016934648156166077,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.3960723876953125,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.018137667328119278,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.445399045944214,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.018090933561325073,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.3903958797454834,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.017409203574061394,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.4429993629455566,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.017465865239501,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.409397602081299,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.018192371353507042,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.409186840057373,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.017598532140254974,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.4059994220733643,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.017320340499281883,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.4299216270446777,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.019035857170820236,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.4485421180725098,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.017793111503124237,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.396441698074341,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.016964446753263474,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.4195380210876465,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.021174993366003036,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.428013324737549,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 3.9667880535125732,
+ "eval_runtime": 62.2277,
+ "eval_samples_per_second": 39.243,
+ "eval_steps_per_second": 1.237,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.01875605247914791,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.38484525680542,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.018568016588687897,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.3507912158966064,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.019872169941663742,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.353137969970703,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.01876811869442463,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.375810384750366,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.018586816266179085,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.399104595184326,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.020378353074193,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.3919358253479004,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.019244177266955376,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.3788328170776367,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.0193084217607975,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.3619728088378906,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.019315209239721298,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.3798677921295166,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.018572242930531502,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.3925108909606934,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.01862615905702114,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.351928234100342,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.01858530193567276,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.348261833190918,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.018370235338807106,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.392763376235962,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.019499799236655235,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.378734588623047,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.018300920724868774,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.375892400741577,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.018973981961607933,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.3861308097839355,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.01848417893052101,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.369990587234497,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.01829555258154869,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.3849124908447266,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.018444348126649857,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.3794360160827637,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.018307942897081375,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.385989189147949,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.0177899319678545,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.4433321952819824,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.017565859481692314,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.3808670043945312,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.017919441685080528,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.4058759212493896,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.017944026738405228,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.4076156616210938,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.01726466603577137,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.3993449211120605,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.01821359619498253,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.388521194458008,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.018399931490421295,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.355663776397705,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.018190836533904076,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.3569793701171875,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.017945483326911926,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.422205924987793,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.017825208604335785,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.405452251434326,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.018042994663119316,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.409529447555542,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.018815988674759865,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.3680338859558105,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.0177475456148386,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.3957064151763916,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.01767324097454548,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.426119565963745,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.017502157017588615,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.3860602378845215,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.01826084591448307,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.3443658351898193,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.018149342387914658,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.441053628921509,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.01743144541978836,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.369959831237793,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.018931198865175247,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.3382790088653564,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.01852957159280777,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.393571138381958,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.01744253933429718,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.4136338233947754,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.0188548993319273,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.420109748840332,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.01842757686972618,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.38987398147583,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.018423188477754593,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.3657498359680176,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.01937674544751644,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.3901844024658203,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.019053233787417412,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.39098858833313,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.018784556537866592,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.375641345977783,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.019018791615962982,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.3715341091156006,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.018060091882944107,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.385960578918457,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.019320931285619736,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.3708150386810303,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.018254855647683144,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.378389835357666,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.018344849348068237,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.3670427799224854,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.01864561252295971,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.3780577182769775,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.017792504280805588,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.3890440464019775,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.01926976628601551,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.399027109146118,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.01768679916858673,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.399245262145996,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.017078734934329987,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.3935627937316895,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.017845293506979942,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.4019460678100586,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.01667986437678337,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.3843274116516113,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.017841368913650513,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.420551300048828,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.01789095811545849,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.3795599937438965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.017387472093105316,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.404527425765991,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.017727486789226532,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.368422031402588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.018426265567541122,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.4203758239746094,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.017427532002329826,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.3813066482543945,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.01781563088297844,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.377004384994507,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.017903029918670654,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.390786647796631,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.018497183918952942,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.4222888946533203,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.017774127423763275,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.4386186599731445,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.017519637942314148,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.3773350715637207,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.017004752531647682,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.3996877670288086,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.021300921216607094,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.4059641361236572,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 3.9651381969451904,
+ "eval_runtime": 64.237,
+ "eval_samples_per_second": 38.015,
+ "eval_steps_per_second": 1.199,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.019478417932987213,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.346750259399414,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.022026486694812775,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.3380393981933594,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.021453749388456345,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.3837451934814453,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.018983036279678345,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.373610019683838,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.020668506622314453,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.338237762451172,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.02018234133720398,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.3517379760742188,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0184745155274868,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.33943247795105,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.019766638055443764,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.3328628540039062,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.01948261633515358,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.361790657043457,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.018952930346131325,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.364760398864746,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.019968921318650246,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.343646287918091,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.01876276172697544,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.3668432235717773,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.019649820402264595,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.3603689670562744,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.01976124383509159,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.342262029647827,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.018047695979475975,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.378164052963257,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.01947302557528019,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.3635683059692383,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.020197149366140366,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.3460724353790283,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.01838929019868374,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.318298578262329,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.01938267983496189,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.332218647003174,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.018450573086738586,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.3692564964294434,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.018261199817061424,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.389166831970215,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.019171850755810738,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.3596410751342773,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.018897389993071556,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.363556385040283,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.018566379323601723,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.3412210941314697,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.01843632012605667,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.3628649711608887,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.017748910933732986,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.3751392364501953,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.01864495314657688,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.378866195678711,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.01812228374183178,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.3596580028533936,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.017738813534379005,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.368849754333496,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.018312761560082436,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.400904893875122,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.018566720187664032,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.393960475921631,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.017562083899974823,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.3609988689422607,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.018859874457120895,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.3903446197509766,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.01862078160047531,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.3752737045288086,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.01797969825565815,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.349073648452759,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.018642215058207512,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.3744235038757324,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.01795344427227974,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.3494296073913574,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.01832517795264721,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.3772659301757812,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.018316779285669327,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.34093976020813,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.017998583614826202,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.3537893295288086,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.017405519261956215,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.36969256401062,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.017421456053853035,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.3762929439544678,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.017348214983940125,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.365250587463379,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.017987079918384552,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.3528800010681152,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.01740369200706482,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.34809947013855,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.01767742820084095,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.3873414993286133,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.01786552369594574,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.3993542194366455,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.01840440183877945,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.363851308822632,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.018372777849435806,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.377171516418457,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.018557261675596237,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.3954250812530518,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.018024763092398643,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.38138484954834,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.017409538850188255,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.396350145339966,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.01779399998486042,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.3993735313415527,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.01735842600464821,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.3483355045318604,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.01823486015200615,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.3715901374816895,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.017776019871234894,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.3903591632843018,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.018326254561543465,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.364900827407837,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.01827094703912735,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.3438186645507812,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.01754159666597843,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.3551652431488037,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.017510801553726196,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.3748109340667725,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.01735668070614338,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.403426170349121,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.017473991960287094,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.3682873249053955,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.017098890617489815,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.3883895874023438,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.01794300600886345,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.383709192276001,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.01804060861468315,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.405463457107544,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.018679164350032806,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.36195707321167,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.017713533714413643,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.4066250324249268,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.018171053379774094,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.410841464996338,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.017649803310632706,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.4168691635131836,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.018113741651177406,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.4131321907043457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.017961714416742325,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.3622546195983887,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.021376822143793106,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.376415252685547,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 3.9679276943206787,
+ "eval_runtime": 61.2959,
+ "eval_samples_per_second": 39.84,
+ "eval_steps_per_second": 1.256,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.01854010298848152,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.355283260345459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.021272754296660423,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.342026472091675,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.020176826044917107,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.318216562271118,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.019144972786307335,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.343742847442627,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.019824223592877388,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.313528060913086,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.020314225926995277,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.3193306922912598,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.02053622156381607,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.3684723377227783,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.01978791132569313,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.304171562194824,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.019836056977510452,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.3103976249694824,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.02083844691514969,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.3497042655944824,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.018737798556685448,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.344273805618286,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.01884191669523716,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.3651132583618164,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.01999213732779026,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.3661556243896484,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.018647730350494385,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.2864201068878174,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.02008436620235443,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.3176960945129395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.019128765910863876,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.342780590057373,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.018504656851291656,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.360694408416748,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.019251195713877678,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.353502035140991,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.0191155094653368,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.36004900932312,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.019309870898723602,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.3235840797424316,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.018641646951436996,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.303652763366699,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.019949378445744514,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.337285041809082,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.019760746508836746,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.3083724975585938,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.02001495286822319,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.3428544998168945,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.019619205966591835,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.3327627182006836,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.01893351785838604,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.3344879150390625,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.019357211887836456,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.3769724369049072,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.019030574709177017,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.3382792472839355,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.020675932988524437,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.352922201156616,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.020977795124053955,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.3025388717651367,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.018994763493537903,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.3722734451293945,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.019694602116942406,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.356004238128662,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.018226392567157745,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.382113456726074,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.01841692067682743,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.3366098403930664,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.019732195883989334,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.315749168395996,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.018796177580952644,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.387970209121704,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.019775379449129105,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.370443820953369,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.018852675333619118,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.3536925315856934,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.019294993951916695,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.370649814605713,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.01990549825131893,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.332792282104492,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.01898631826043129,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.3224639892578125,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.018629908561706543,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.335266590118408,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.018405716866254807,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.3959007263183594,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.01788157783448696,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.3351597785949707,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.020106187090277672,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.3679728507995605,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.017606457695364952,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.335587501525879,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.01863827370107174,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.342696189880371,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.019782640039920807,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.369798183441162,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.01814732886850834,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.3451857566833496,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.017988786101341248,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.346390962600708,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.01805048994719982,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.3384218215942383,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.01829634979367256,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.37813663482666,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.01829833723604679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.3628640174865723,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.018536243587732315,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.372694492340088,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.01803603768348694,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.380868434906006,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.017752433195710182,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.3762166500091553,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.01767779514193535,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.34380841255188,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.018236516043543816,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.402556896209717,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.017979485914111137,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.367926597595215,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.017993036657571793,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.346769332885742,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.018208203837275505,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.368234634399414,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.017628569155931473,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.361219882965088,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.018360665068030357,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.413729190826416,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.01757584512233734,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.3906946182250977,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.017810869961977005,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.343019485473633,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.018251191824674606,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.4060416221618652,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.017858365550637245,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.384634494781494,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.01818324811756611,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.384280204772949,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.018480699509382248,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.346285104751587,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.018677543848752975,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.3611297607421875,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.017619142308831215,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.3700506687164307,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.02169172652065754,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.377382278442383,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 3.9741594791412354,
+ "eval_runtime": 61.5554,
+ "eval_samples_per_second": 39.672,
+ "eval_steps_per_second": 1.251,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.018706079572439194,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.330112934112549,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.018803605809807777,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.2816882133483887,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.01853000745177269,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.2921040058135986,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.01803869754076004,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.2959041595458984,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.017079241573810577,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.347280502319336,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.018676968291401863,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.2957611083984375,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.017800159752368927,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.3546934127807617,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.018619297072291374,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.324152946472168,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.017725948244333267,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.3029189109802246,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.018584828823804855,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.339733839035034,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.018017224967479706,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.3224563598632812,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.018421247601509094,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.3387138843536377,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.017832159996032715,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.3309199810028076,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.01841033436357975,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.286250114440918,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.017978807911276817,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.309865951538086,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.018115395680069923,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.351820230484009,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.018109634518623352,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.339370012283325,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.018403902649879456,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.3475425243377686,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.018310097977519035,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.3355088233947754,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.018734650686383247,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.3085222244262695,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.018644677475094795,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.3448398113250732,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.017948374152183533,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.3107964992523193,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.018470020964741707,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.3356473445892334,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.018252935260534286,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.3303258419036865,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.019037144258618355,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.3195786476135254,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.01882040873169899,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.327070474624634,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.018461447209119797,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.381578207015991,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.019000960513949394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.310007333755493,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.018681352958083153,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.3152713775634766,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.018967652693390846,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.32594633102417,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.018034840002655983,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.3330178260803223,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.018646908923983574,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.3461005687713623,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.017740851268172264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.3342158794403076,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.018651707097887993,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.3133187294006348,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.018334193155169487,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.3243541717529297,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.017846569418907166,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.380344867706299,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.01923597976565361,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.3429012298583984,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.01741809956729412,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.3528919219970703,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.01906408555805683,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.2913482189178467,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.01799873635172844,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.3387508392333984,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.018642444163560867,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.3193347454071045,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.018173884600400925,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.363862991333008,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.017236918210983276,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.3342058658599854,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.01799003966152668,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.3633697032928467,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.01782006211578846,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.318671226501465,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.018514500930905342,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.3408515453338623,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.017743313685059547,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.342982292175293,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.01804332435131073,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.362891912460327,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.017191672697663307,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.36106014251709,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.018392067402601242,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.2962214946746826,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.018170949071645737,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.358933925628662,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.018051467835903168,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.3357250690460205,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.017690587788820267,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.372972011566162,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.018124736845493317,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.3036465644836426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.01832064613699913,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.322453737258911,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.017560303211212158,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.356179714202881,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.018004758283495903,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.3430850505828857,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.017548002302646637,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.32066011428833,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.017965545877814293,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.3743958473205566,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.017993371933698654,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.35526704788208,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.017911285161972046,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.333646059036255,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.01756276562809944,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.3324525356292725,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.01796603947877884,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.332352638244629,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.017659401521086693,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.3543365001678467,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.01766570471227169,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.319436550140381,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.017549576237797737,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.3728671073913574,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.018054332584142685,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.3571078777313232,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.01780802756547928,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.3745193481445312,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.017592715099453926,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.349599838256836,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.0175273809581995,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.326724052429199,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.01774190552532673,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.351414203643799,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.021057726815342903,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.355438709259033,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 3.980590343475342,
+ "eval_runtime": 64.0284,
+ "eval_samples_per_second": 38.139,
+ "eval_steps_per_second": 1.203,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.01852157898247242,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.279857635498047,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.01908745802938938,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.322187662124634,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.018606485798954964,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.3020753860473633,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.018377110362052917,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.2937381267547607,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.01929803378880024,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.323049545288086,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.019005702808499336,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.3179938793182373,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.017784560099244118,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.2982497215270996,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.01901211030781269,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.2964975833892822,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.018238209187984467,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.339160919189453,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.019134020432829857,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.2996795177459717,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.01800241880118847,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.3076975345611572,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.018778108060359955,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.325648546218872,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.018111059442162514,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.2866837978363037,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.01902944967150688,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.2555606365203857,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.017556916922330856,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.318284511566162,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.018638404086232185,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.327514410018921,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.018207989633083344,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.3031258583068848,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.017383132129907608,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.2900843620300293,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.018838368356227875,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.316427707672119,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.01785479672253132,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.307969570159912,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.01844528131186962,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.3244309425354004,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.018888844177126884,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.2731080055236816,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.018467606976628304,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.335411548614502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.019145434722304344,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.3307838439941406,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.018448568880558014,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.3589491844177246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.01844393089413643,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.281749725341797,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.01864924281835556,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.3394992351531982,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.01843435876071453,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.335958480834961,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.018971994519233704,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.3345675468444824,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.01797044463455677,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.311155080795288,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.01953919045627117,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.305577039718628,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.01805555634200573,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.334611415863037,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.01828804239630699,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.321223020553589,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.018457863479852676,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.301429271697998,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.019404536113142967,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.2790372371673584,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.017915820702910423,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.3662614822387695,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.018640510737895966,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.327456474304199,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.01786927878856659,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.314758777618408,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.018386350944638252,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.3035807609558105,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.017978228628635406,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.2823503017425537,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.01857025735080242,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.317556142807007,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.0184731837362051,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.3500728607177734,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.018545255064964294,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.3015494346618652,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.017906157299876213,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.3649752140045166,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.018221359699964523,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.3162622451782227,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.018429694697260857,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.297499179840088,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.01882862113416195,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.3677923679351807,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.018744835630059242,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.3383946418762207,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.01775563322007656,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.3351221084594727,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.01871674694120884,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.3395285606384277,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.018029795959591866,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.2882657051086426,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.018112031742930412,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.319117307662964,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.018760433420538902,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.3635196685791016,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.01821206696331501,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.309791088104248,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.018608879297971725,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.3308310508728027,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.019123248755931854,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.3186330795288086,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.018079813569784164,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.33872127532959,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.01852683164179325,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.315091609954834,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.01769738830626011,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.3373889923095703,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.019215177744627,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.335101366043091,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.017887922003865242,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.329543352127075,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.018720639869570732,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.3355422019958496,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.017772076651453972,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.302229881286621,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.01804286427795887,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.3566503524780273,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.017627401277422905,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.334893226623535,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.017679693177342415,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.2954065799713135,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.018215391784906387,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.3217079639434814,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.017763664945960045,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.3080391883850098,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.018400657922029495,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.360480785369873,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.017310120165348053,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.332749366760254,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.01732005923986435,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.3023996353149414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.02136695571243763,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.3171167373657227,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.9839487075805664,
+ "eval_runtime": 64.4777,
+ "eval_samples_per_second": 37.874,
+ "eval_steps_per_second": 1.194,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.018628792837262154,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.3085525035858154,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.01934065669775009,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.275996446609497,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.019491534680128098,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.301079750061035,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.01831379532814026,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.296050786972046,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.018555769696831703,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.2560927867889404,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.01922718994319439,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.3310370445251465,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.018664665520191193,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.2992236614227295,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.01841133087873459,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.25832200050354,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.02053012326359749,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.2908620834350586,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.01921696588397026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.259072780609131,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.018401997163891792,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.301300525665283,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.019370075315237045,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.2989721298217773,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.01793838106095791,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.2667601108551025,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.018552329391241074,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.321544885635376,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.018189920112490654,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.2556686401367188,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.017952604219317436,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.2973861694335938,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.01864135079085827,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.312366485595703,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.018349099904298782,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.2565629482269287,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.018149899318814278,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.29868745803833,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.01827981509268284,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.292799711227417,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.01792013831436634,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.321580410003662,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.017162339761853218,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.2954297065734863,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.018131613731384277,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.3083887100219727,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.01798122748732567,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.3444621562957764,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.017841525375843048,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.3026833534240723,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.01803119294345379,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.281219720840454,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.018162449821829796,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.277799367904663,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.018028786405920982,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.2889952659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.017529798671603203,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.313809871673584,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.01811928115785122,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.333418369293213,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.01779293268918991,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.293541193008423,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.018098467960953712,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.2701730728149414,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.017646370455622673,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.309724807739258,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.019019491970539093,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.2928850650787354,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.017994478344917297,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.3098504543304443,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.018143892288208008,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.2963194847106934,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.01818154565989971,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.2958524227142334,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.0183187797665596,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.2874345779418945,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.017786474898457527,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.2910757064819336,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.017657335847616196,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.299335479736328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.017966900020837784,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.331350564956665,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.017846832051873207,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.3195853233337402,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.018276406452059746,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.2835865020751953,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.018248995766043663,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.3075971603393555,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.01825234480202198,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.323974132537842,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.0178872998803854,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.277646541595459,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.017811937257647514,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.262815475463867,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.018097421154379845,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.2911031246185303,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.017817489802837372,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.291011095046997,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.017519952729344368,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.3111133575439453,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.018086353316903114,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.29461669921875,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.017423808574676514,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.316877841949463,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.01739143580198288,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.343290328979492,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.017492949962615967,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.2867960929870605,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.01771623082458973,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.337468147277832,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.017315423116087914,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.3162851333618164,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.017791584134101868,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.2925267219543457,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.01794111542403698,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.324666738510132,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.017818832769989967,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.314690351486206,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.018544992431998253,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.3311715126037598,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.01775962859392166,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.3389463424682617,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.018356498330831528,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.3347792625427246,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.018026728183031082,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.2906317710876465,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.018123000860214233,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.3188047409057617,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.018297648057341576,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.3061704635620117,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.017799632623791695,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.3368611335754395,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.017928048968315125,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.326777458190918,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.018105698749423027,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.3189263343811035,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.017497455701231956,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.37094783782959,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.018238704651594162,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.371366500854492,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.018718887120485306,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.3076930046081543,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.022466568276286125,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.325347423553467,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 3.989081859588623,
+ "eval_runtime": 61.2795,
+ "eval_samples_per_second": 39.85,
+ "eval_steps_per_second": 1.257,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.018786108121275902,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.2681350708007812,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.02124481461942196,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.281920909881592,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.01866064965724945,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.2950901985168457,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.019922351464629173,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.2939810752868652,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.018888959661126137,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.2506773471832275,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.01963820308446884,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.243678331375122,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.019207993522286415,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.2991080284118652,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.018969031050801277,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.264408588409424,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.019303269684314728,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.269500732421875,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.018705174326896667,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.257845401763916,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.019264446571469307,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.263430595397949,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.018027326092123985,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.28702449798584,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.019376209005713463,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.252567768096924,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.018585721030831337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.24939227104187,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.01962319202721119,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.2504074573516846,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.018904808908700943,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.2754735946655273,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.020670494064688683,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.3274216651916504,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.019269540905952454,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.277693033218384,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.01851348951458931,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.30722713470459,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.019418980926275253,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.2839508056640625,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.018420031294226646,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.2727484703063965,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.01860026642680168,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.2800397872924805,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.018214095383882523,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.2605395317077637,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.018570467829704285,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.298377275466919,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.018116766586899757,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.2953498363494873,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.018491394817829132,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.269218921661377,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.018195809796452522,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.2816600799560547,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.01736897975206375,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.304725170135498,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.018366357311606407,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.2991557121276855,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.01782357692718506,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.2722220420837402,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.017849192023277283,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.2539634704589844,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.017683928832411766,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.2979817390441895,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.017911190167069435,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.286712646484375,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.018424000591039658,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.292938232421875,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.01728540100157261,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.2891898155212402,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.018603453412652016,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.317518711090088,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.018080297857522964,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.273111581802368,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.018728841096162796,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.3038439750671387,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.018404530361294746,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.267301082611084,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.01816863939166069,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.2716097831726074,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.01830720156431198,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.278252601623535,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.017528850585222244,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.2902517318725586,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.017734181135892868,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.326822519302368,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.017636269330978394,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.296706199645996,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.01809834875166416,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.2940311431884766,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.017481546849012375,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.2835071086883545,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.01803549937903881,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.2979648113250732,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.017897363752126694,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.298192024230957,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.017886117100715637,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.2528061866760254,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.017787186428904533,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.3079915046691895,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.017887486144900322,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.2916650772094727,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.017394157126545906,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.278643846511841,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.018659798428416252,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.3291149139404297,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.017590660601854324,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.273383617401123,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.017796199768781662,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.287100315093994,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.017697831615805626,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.289719343185425,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.01766834408044815,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.3088066577911377,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.017558623105287552,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.310497760772705,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.017388205975294113,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.301988363265991,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.01780710741877556,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.3257439136505127,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.017604323104023933,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.327035903930664,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.017286553978919983,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.321244478225708,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.017773570492863655,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.309398651123047,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.016913311555981636,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.292271614074707,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.018218258395791054,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.2950148582458496,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.01737598143517971,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.2862462997436523,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.01744207926094532,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.305614709854126,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.017681103199720383,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.307971239089966,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.01783016137778759,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.307300567626953,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0171083752065897,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.3298232555389404,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.01770375855267048,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.2668328285217285,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.021273743361234665,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.2889244556427,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.996196985244751,
+ "eval_runtime": 61.3281,
+ "eval_samples_per_second": 39.819,
+ "eval_steps_per_second": 1.256,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.018618006259202957,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.286426067352295,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.019142355769872665,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.271833896636963,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.018891366198658943,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.2249698638916016,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0181980412453413,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.2540817260742188,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.01890307106077671,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.2274742126464844,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.017948197200894356,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.271634578704834,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.0183399748057127,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.2752885818481445,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.01843700371682644,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.239213466644287,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.0186455175280571,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.262913227081299,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.018880294635891914,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.279811382293701,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.018527936190366745,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.265861749649048,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.01842155121266842,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.2417643070220947,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.01889784075319767,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.277313709259033,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.01868009753525257,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.294278860092163,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.01869044452905655,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.2623791694641113,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.018669607117772102,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.2748589515686035,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.019066302105784416,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.2807693481445312,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.018781524151563644,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.267548084259033,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.01900012046098709,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.268430233001709,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.01811046153306961,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.249452829360962,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.01891542598605156,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.2876968383789062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.018590277060866356,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.2591049671173096,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.018163183704018593,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.27728271484375,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.018146511167287827,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.2909622192382812,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.018476741388440132,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.275810480117798,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.019072428345680237,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.270618200302124,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.01850801706314087,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.2636537551879883,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.018887825310230255,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.2576699256896973,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.018549323081970215,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.233875036239624,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.019004428759217262,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.317328453063965,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.018481610342860222,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.2798519134521484,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.018844828009605408,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.2724647521972656,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.017980510368943214,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.2837905883789062,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.01842239312827587,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.282580852508545,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.01806344836950302,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.2639782428741455,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.018828753381967545,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.2765626907348633,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.018340127542614937,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.279996395111084,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.018503865227103233,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.291977643966675,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.018294846639037132,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.26834774017334,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.01829240843653679,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.2692995071411133,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.019312310963869095,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.306288719177246,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.018151750788092613,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.2955055236816406,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.01843264140188694,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.2564001083374023,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.01815878413617611,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.309749126434326,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.018385276198387146,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.2828011512756348,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.017592385411262512,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.2743144035339355,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.01778801716864109,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.3009839057922363,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.01784433424472809,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.270941734313965,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.017775509506464005,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.294405937194824,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.01790355145931244,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.3317418098449707,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.01766853779554367,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.2788710594177246,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.018095338717103004,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.3081836700439453,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.017551491037011147,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.302518367767334,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.018155159428715706,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.2757461071014404,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.01776544377207756,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.2773022651672363,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.017995497211813927,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.281576633453369,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.017745571210980415,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.299907922744751,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.018981626257300377,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.2928647994995117,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.01794815994799137,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.288900852203369,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.017981866374611855,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.3037233352661133,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.017933540046215057,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.3035197257995605,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.017871227115392685,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.3012588024139404,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.01812930777668953,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.274885892868042,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.017512621358036995,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.2652831077575684,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.01803465560078621,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.2784218788146973,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.017772581428289413,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.2738118171691895,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.017899878323078156,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.2543373107910156,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.017925484105944633,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.2831292152404785,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.017964687198400497,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.2785139083862305,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.01768588088452816,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.272413492202759,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.017593499273061752,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.2786943912506104,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.02263619564473629,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.2331840991973877,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.997504234313965,
+ "eval_runtime": 68.6017,
+ "eval_samples_per_second": 35.597,
+ "eval_steps_per_second": 1.122,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.018983691930770874,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.241229295730591,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.01769745722413063,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.244720220565796,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.01940307579934597,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.235339641571045,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.017714716494083405,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.2247347831726074,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.018448829650878906,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.270392656326294,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.017696617171168327,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.254031181335449,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.01945924013853073,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.253511905670166,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.01757945865392685,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.2771854400634766,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.018575280904769897,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.238738536834717,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.01795017346739769,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.270235538482666,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.01872493326663971,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.2378664016723633,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.01798509620130062,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.254434823989868,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.018167544156312943,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.250739574432373,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.01762092299759388,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.2840588092803955,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.01831229031085968,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.267660140991211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.01808358170092106,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.2154972553253174,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.017941338941454887,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.2377076148986816,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.01809528097510338,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.2710723876953125,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.01749086193740368,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.240135669708252,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.01763586327433586,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.2628841400146484,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.018280034884810448,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.2516636848449707,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.01793629862368107,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.285431385040283,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.01772841066122055,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.25602388381958,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.017574705183506012,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.245393753051758,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.017750296741724014,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.2361996173858643,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.01791345328092575,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.290215492248535,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.017766227945685387,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.257805585861206,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.01831849105656147,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.269528865814209,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.01814088225364685,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.261806011199951,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.01830805465579033,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.305274248123169,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.018372246995568275,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.263526678085327,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.01808883436024189,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.243898391723633,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.01745104044675827,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.2864532470703125,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.017856569960713387,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.21815824508667,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.01895907334983349,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.267364978790283,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.01753549836575985,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.2781548500061035,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.018666768446564674,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.225311756134033,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.018031692132353783,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.259636878967285,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.01837204024195671,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.301126003265381,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.01839369907975197,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.2295851707458496,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.018085381016135216,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.263286590576172,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.01798195205628872,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.283132791519165,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.018151475116610527,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.2986037731170654,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.017622441053390503,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.2850263118743896,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.01746201701462269,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.2642040252685547,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.017317142337560654,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.2261276245117188,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.01808793842792511,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.2630279064178467,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.017382370308041573,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.2685937881469727,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.01744145341217518,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.2540926933288574,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.017300108447670937,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.3077826499938965,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.017657684162259102,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.256051540374756,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.01778305135667324,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.2528152465820312,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.017506316304206848,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.274245262145996,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.01796594075858593,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.242635726928711,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.01722782291471958,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.2392749786376953,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.018115712329745293,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.2796077728271484,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.01787315122783184,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.2541041374206543,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.01759975031018257,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.312413215637207,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.017858082428574562,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.268305540084839,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.01754104346036911,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.2324278354644775,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.01789918914437294,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.279139995574951,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.017921460792422295,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.260338544845581,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.018311934545636177,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.279531955718994,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.01787002570927143,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.3422956466674805,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.018116366118192673,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.2641375064849854,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.01823844201862812,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.298542022705078,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.017788249999284744,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.273583173751831,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.017676375806331635,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.2824862003326416,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.017663495615124702,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.268880605697632,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.017920266836881638,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.28188157081604,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.017840363085269928,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.295778751373291,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.021651441231369972,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.2805123329162598,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.003090858459473,
+ "eval_runtime": 63.849,
+ "eval_samples_per_second": 38.246,
+ "eval_steps_per_second": 1.206,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.01956116035580635,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.2226920127868652,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.01807370036840439,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.2155508995056152,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.019413387402892113,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.2068796157836914,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.018032673746347427,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.23478364944458,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.01879831776022911,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.216125249862671,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.01816883310675621,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.291840076446533,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.01887478679418564,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.2400455474853516,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.01869991049170494,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.234286069869995,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.01881302334368229,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.2403011322021484,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.01813030056655407,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.2345221042633057,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.01873958483338356,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.269077777862549,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.01780061610043049,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.205399513244629,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.01844349317252636,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.191356658935547,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.01831045188009739,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.2332935333251953,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.017539450898766518,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.2783172130584717,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.01822333224117756,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.2451915740966797,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.017310652881860733,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.2773776054382324,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.017784686759114265,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.260366439819336,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.017756391316652298,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.2379889488220215,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.018218601122498512,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.2328624725341797,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.017498090863227844,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.2771708965301514,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.017671575769782066,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.2608582973480225,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.017075426876544952,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.2639667987823486,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.017231155186891556,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.2379541397094727,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.017439233139157295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.2063727378845215,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.01732606254518032,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.2259323596954346,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.017213711515069008,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.262057065963745,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.017605315893888474,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.2544336318969727,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.017422683537006378,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.2487425804138184,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.017587704584002495,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.270930290222168,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.017578281462192535,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.2582998275756836,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.017422989010810852,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.230900287628174,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.017262905836105347,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.260876178741455,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.01753116026520729,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.2794618606567383,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.017901718616485596,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.2977700233459473,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.01739160530269146,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.2062416076660156,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.017803272232413292,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.2721927165985107,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.01744180917739868,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.223621368408203,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.01748846098780632,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.2446537017822266,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.018154891207814217,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.2774620056152344,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.017660103738307953,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.256049156188965,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.017895042896270752,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.2390687465667725,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.01810084655880928,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.2590980529785156,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.01777142658829689,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.2521610260009766,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.017798084765672684,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.2923569679260254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.017959048971533775,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.2694578170776367,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.017739834263920784,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.276766777038574,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.017685972154140472,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.2840123176574707,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.017836326733231544,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.2199149131774902,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.01754208654165268,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.26906156539917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.01764521561563015,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.240112066268921,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.01754322275519371,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.2251625061035156,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.017735576257109642,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.2564854621887207,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.01783844828605652,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.3034374713897705,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.01781659945845604,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.2717790603637695,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.01788412407040596,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.253129720687866,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.01771196350455284,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.2762832641601562,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.017484815791249275,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.2821648120880127,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.017767874523997307,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.272578239440918,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.017588794231414795,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.2206339836120605,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.017551198601722717,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.260745048522949,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.0174455177038908,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.2688534259796143,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.017540588974952698,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.2458150386810303,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.017331562936306,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.2577664852142334,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.01767123118042946,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.2621970176696777,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.01742144301533699,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.2672641277313232,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.017617376521229744,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.2620532512664795,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.01754932478070259,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.2286524772644043,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.01754574291408062,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.2759151458740234,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.017384039238095284,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.2592954635620117,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.017610175535082817,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.2805817127227783,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.02227424643933773,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.2429699897766113,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.017529433593153954,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 3.244961977005005,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.017703555524349213,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 3.246979236602783,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.018033066764473915,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 3.21051287651062,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.017956966534256935,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 3.200293779373169,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.01785174570977688,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 3.255819320678711,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.017845869064331055,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 3.2381227016448975,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.017376607283949852,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 3.209688663482666,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.017835665494203568,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 3.2364702224731445,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.017631705850362778,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 3.2303967475891113,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.01760438270866871,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 3.2664668560028076,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.017505332827568054,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 3.2952675819396973,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.017497574910521507,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 3.232846736907959,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.0181044302880764,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 3.2061758041381836,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.017774557694792747,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 3.2076504230499268,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.017889510840177536,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 3.249056816101074,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.01745046302676201,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 3.189025402069092,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.018013279885053635,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 3.2340521812438965,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.017677349969744682,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 3.204529285430908,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.017726793885231018,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 3.2207562923431396,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.01777220144867897,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 3.257887840270996,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.017448291182518005,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 3.2266998291015625,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.01795802265405655,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 3.243046760559082,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.017767000943422318,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 3.2252984046936035,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.017598411068320274,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 3.2728867530822754,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.0175093375146389,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 3.2301716804504395,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.01752234622836113,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 3.2554984092712402,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.017380215227603912,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 3.2103607654571533,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.017711712047457695,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 3.227721691131592,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.01743495650589466,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 3.258934259414673,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.017517881467938423,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 3.2590456008911133,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.01759134978055954,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 3.2465591430664062,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.017467528581619263,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 3.2056009769439697,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.017469462007284164,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 3.260788679122925,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.017483681440353394,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 3.2763781547546387,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.01750316470861435,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 3.2057723999023438,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.01745068095624447,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 3.2306554317474365,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.017555013298988342,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 3.258639335632324,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.01749131642282009,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 3.2351009845733643,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.01748097501695156,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 3.2354822158813477,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.01745813898742199,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 3.262465000152588,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.017326191067695618,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 3.224465847015381,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.017351271584630013,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 3.2677080631256104,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.017157303169369698,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 3.188359022140503,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.017411384731531143,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 3.24735689163208,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.017491061240434647,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 3.249330520629883,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.017254192382097244,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 3.245887279510498,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.017440566793084145,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 3.2333600521087646,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.017463166266679764,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 3.2553508281707764,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.017299573868513107,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 3.2337400913238525,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.017604002729058266,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 3.2858872413635254,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.01726403273642063,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 3.227851390838623,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.01754872314631939,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 3.277681350708008,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.01720334216952324,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 3.234874963760376,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.017277004197239876,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 3.225287437438965,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.01748613454401493,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 3.258054256439209,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.017280500382184982,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 3.223569393157959,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.017574995756149292,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 3.2576966285705566,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.017353147268295288,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 3.2692956924438477,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.017138740047812462,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 3.2501301765441895,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.017247697338461876,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 3.215188503265381,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.017458025366067886,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 3.2622392177581787,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.017626900225877762,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 3.3074095249176025,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.017384719103574753,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 3.2575693130493164,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.018027596175670624,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 3.257897138595581,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.01786576583981514,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 3.261140823364258,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.0175836980342865,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 3.23909854888916,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.017651988193392754,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 3.229992389678955,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.017539171501994133,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 3.3183445930480957,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.017183566465973854,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 3.225883960723877,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.01837322674691677,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 3.2709217071533203,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.01733546145260334,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 3.2358856201171875,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.021558862179517746,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 3.2326605319976807,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.016476154327393,
+ "eval_runtime": 60.8751,
+ "eval_samples_per_second": 40.115,
+ "eval_steps_per_second": 1.265,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.018310755491256714,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 3.232618570327759,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.017700375989079475,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 3.2042884826660156,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.018466323614120483,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 3.2581820487976074,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.01803477294743061,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 3.213212490081787,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.018226031213998795,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 3.2348382472991943,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.017568888142704964,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 3.216085195541382,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.01825745217502117,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 3.2632150650024414,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.018053093925118446,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 3.1911230087280273,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.01748274639248848,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 3.173572063446045,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.01801222935318947,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 3.2377736568450928,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.017899058759212494,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 3.2143607139587402,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.017577150836586952,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 3.213991165161133,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.017483975738286972,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 3.1818995475769043,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.017731470987200737,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 3.1925432682037354,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.017530398443341255,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 3.2301573753356934,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.017736420035362244,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 3.2523295879364014,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.017762163653969765,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 3.2714390754699707,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.01757841370999813,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 3.224590301513672,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.017550919204950333,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 3.237952709197998,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.017783518880605698,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 3.2444963455200195,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.0177310798317194,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 3.1845245361328125,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.017549844458699226,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 3.2423999309539795,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.017969682812690735,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 3.2205543518066406,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.017357368022203445,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 3.247735023498535,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.017934780567884445,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 3.2423110008239746,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.017620455473661423,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 3.1820085048675537,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.01717233657836914,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 3.2278692722320557,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.017510665580630302,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 3.2136645317077637,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.017654601484537125,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 3.2125205993652344,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.01707565411925316,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 3.2393624782562256,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.017397494986653328,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 3.2494006156921387,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.017183862626552582,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 3.2070884704589844,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.01732145994901657,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 3.2487831115722656,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.017353307455778122,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 3.2498674392700195,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.017384063452482224,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 3.2471401691436768,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.017545688897371292,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 3.234022855758667,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.017262250185012817,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 3.205763339996338,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.01720436103641987,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 3.2519524097442627,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.017228005453944206,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 3.272043466567993,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.01735604740679264,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 3.2195615768432617,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.017384080216288567,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 3.2489025592803955,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.01752820611000061,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 3.239253520965576,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.01737368479371071,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 3.2232961654663086,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.01735164038836956,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 3.1779868602752686,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.01705678179860115,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 3.2185497283935547,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.017500247806310654,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 3.2413647174835205,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.017558136954903603,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 3.244550943374634,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.017196934670209885,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 3.286327838897705,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.017252638936042786,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 3.2400975227355957,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.017324181273579597,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 3.243863582611084,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.01771637238562107,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 3.2774100303649902,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.017239563167095184,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 3.2416157722473145,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.01733541674911976,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 3.2512667179107666,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.017296332865953445,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 3.2150471210479736,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.017267517745494843,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 3.214918613433838,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.017210787162184715,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 3.2482833862304688,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.01706908456981182,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 3.282301425933838,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.017387641593813896,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 3.2331676483154297,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.016940215602517128,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 3.2546334266662598,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.01763288490474224,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 3.2315475940704346,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.017375212162733078,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 3.2374236583709717,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.01716529205441475,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 3.227271556854248,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.017252633348107338,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 3.2300667762756348,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.01710720732808113,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 3.2416443824768066,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.0174605380743742,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 3.2148118019104004,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.01732385903596878,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 3.273786783218384,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.01699053682386875,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 3.2652063369750977,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.01730487309396267,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 3.246283769607544,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.01705090142786503,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 3.243262767791748,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.017367759719491005,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 3.2082772254943848,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.0174799095839262,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 3.241734504699707,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.022081606090068817,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 3.219550132751465,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.019675254821777,
+ "eval_runtime": 61.4928,
+ "eval_samples_per_second": 39.712,
+ "eval_steps_per_second": 1.252,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.017951447516679764,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 3.272630453109741,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.017625026404857635,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 3.220460891723633,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.01805288903415203,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 3.244718551635742,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.01773238182067871,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 3.1786532402038574,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.01714378595352173,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 3.1825239658355713,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.0173969566822052,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 3.210265636444092,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.017325550317764282,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 3.2094812393188477,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.017343346029520035,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 3.227940082550049,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.01761573739349842,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 3.218851089477539,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.017562439665198326,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 3.212418556213379,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.017642781138420105,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 3.1946425437927246,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.017536796629428864,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 3.2188472747802734,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.017488937824964523,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 3.204380750656128,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.01750698871910572,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 3.2152180671691895,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.017483115196228027,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 3.2022998332977295,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.017420953139662743,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 3.2242417335510254,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.017137344926595688,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 3.1949565410614014,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.017721502110362053,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 3.1778595447540283,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.01712454855442047,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 3.2012290954589844,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.017721572890877724,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 3.2224278450012207,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.017709681764245033,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 3.2433042526245117,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.017100242897868156,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 3.2306394577026367,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.01728358119726181,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 3.2183399200439453,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.017316747456789017,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 3.2228753566741943,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.017164191231131554,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 3.2133936882019043,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.017612354829907417,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 3.229147434234619,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.01733795367181301,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 3.245191812515259,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.016892043873667717,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 3.236952781677246,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.01710410788655281,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 3.2391958236694336,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.017562899738550186,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 3.2261290550231934,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.016781290993094444,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 3.181307077407837,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.017699383199214935,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 3.2229576110839844,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.017262829467654228,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 3.252142906188965,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.01712712273001671,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 3.197540283203125,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.0174831785261631,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 3.157918691635132,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.017448000609874725,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 3.2049789428710938,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.01748870126903057,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 3.20831298828125,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.01725795865058899,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 3.1872549057006836,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.01717992126941681,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 3.2387866973876953,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.017386529594659805,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 3.239051342010498,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.017065297812223434,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 3.2281854152679443,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.0171599593013525,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 3.2115731239318848,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.01698792353272438,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 3.2319893836975098,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.017729992046952248,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 3.2329702377319336,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.017458831891417503,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 3.25862455368042,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.017121950164437294,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 3.264134168624878,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.017869124189019203,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 3.20636248588562,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.017398614436388016,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 3.250251054763794,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.017080603167414665,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 3.2597837448120117,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.01719590090215206,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 3.2373785972595215,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.017263559624552727,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 3.2296595573425293,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.017032068222761154,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 3.2424325942993164,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.016956252977252007,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 3.258347749710083,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.017065994441509247,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 3.1995749473571777,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.017562363296747208,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 3.2442078590393066,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.017114480957388878,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 3.215576648712158,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.016992367804050446,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 3.2458670139312744,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.017189865931868553,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 3.2301650047302246,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.01753850281238556,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 3.2062699794769287,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.016889844089746475,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 3.190253734588623,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.017366012558341026,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 3.222769021987915,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.017080657184123993,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 3.2087855339050293,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.01711963303387165,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 3.248896598815918,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.017231037840247154,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 3.2431588172912598,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.01702718809247017,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 3.2148725986480713,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.01697443053126335,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 3.255077838897705,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.017075683921575546,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 3.2506020069122314,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.01679484359920025,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 3.215301513671875,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.017160305753350258,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 3.2272167205810547,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.017034923657774925,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 3.2316184043884277,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.016704535111784935,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 3.2383203506469727,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.02223137393593788,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 3.263951539993286,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.026858329772949,
+ "eval_runtime": 60.753,
+ "eval_samples_per_second": 40.196,
+ "eval_steps_per_second": 1.267,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.017439542338252068,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 3.1771702766418457,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.01753438636660576,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 3.209904432296753,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.017697060480713844,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 3.2294764518737793,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.01715891994535923,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 3.2155330181121826,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.01728959195315838,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 3.203341007232666,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.01722780428826809,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 3.210561513900757,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.016944313421845436,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 3.22910737991333,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.017543960362672806,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 3.1900830268859863,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.017831865698099136,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 3.1837193965911865,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.017087796702980995,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 3.2279911041259766,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.017442941665649414,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 3.1914994716644287,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.017455680295825005,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 3.2123308181762695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.017391972243785858,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 3.2378954887390137,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.017116675153374672,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 3.233334541320801,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.01776699163019657,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 3.211019992828369,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.01739395409822464,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 3.2502312660217285,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.01726681925356388,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 3.230407476425171,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.017171941697597504,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 3.2141127586364746,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.017044365406036377,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 3.225125789642334,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.017174016684293747,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 3.202070951461792,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.017485350370407104,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 3.202237129211426,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.017169756814837456,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 3.216709852218628,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.017259499058127403,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 3.173261880874634,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.017084889113903046,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 3.2197351455688477,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.017031218856573105,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 3.2273876667022705,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.017284328117966652,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 3.232072591781616,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.01718059554696083,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 3.2305593490600586,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.01696706935763359,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 3.1735150814056396,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.017100954428315163,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 3.2081236839294434,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.01694619655609131,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 3.2378270626068115,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.017226874828338623,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 3.2202634811401367,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.01715434342622757,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 3.2412049770355225,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.01709596998989582,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 3.182982921600342,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.017329160124063492,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 3.186955213546753,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.016967516392469406,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 3.206075429916382,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.017111945897340775,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 3.234576940536499,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.017229752615094185,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 3.212334156036377,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.01704096421599388,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 3.234598159790039,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.017327111214399338,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 3.2213339805603027,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.01670593023300171,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 3.2309489250183105,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.017125802114605904,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 3.2517027854919434,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.01689497008919716,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 3.1992850303649902,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.01713643968105316,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 3.23797345161438,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.01718931645154953,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 3.219618797302246,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.0170001108199358,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 3.202345371246338,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.01711791753768921,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 3.223907470703125,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.01681104488670826,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 3.22365665435791,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.017009908333420753,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 3.239800214767456,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.01700955256819725,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 3.214914321899414,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.01681571453809738,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 3.214987277984619,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.01694013550877571,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 3.199127674102783,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.016833258792757988,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 3.239985466003418,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.016871253028512,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 3.2004284858703613,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.01710224151611328,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 3.2227776050567627,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.016747068613767624,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 3.21055006980896,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.016907909885048866,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 3.251277446746826,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.016845090314745903,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 3.2400193214416504,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.016780439764261246,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 3.223231315612793,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.016963545233011246,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 3.2062413692474365,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.016802843660116196,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 3.220633029937744,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.016763046383857727,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 3.2220277786254883,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.016881363466382027,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 3.225633382797241,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.017177097499370575,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 3.2272353172302246,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.01688479259610176,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 3.195650339126587,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.01685161702334881,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 3.200880765914917,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.0172409825026989,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 3.1816346645355225,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.016851846128702164,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 3.156898021697998,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.01679978519678116,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 3.237438678741455,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.016678204759955406,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 3.2218270301818848,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.016977882012724876,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 3.2145681381225586,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.016928421333432198,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 3.218235492706299,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.021838227286934853,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 3.280247688293457,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.030216217041016,
+ "eval_runtime": 61.126,
+ "eval_samples_per_second": 39.95,
+ "eval_steps_per_second": 1.26,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.016846567392349243,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 3.193528890609741,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.016739314422011375,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 3.245321273803711,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.017252139747142792,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 3.1966240406036377,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.016994595527648926,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 3.230320453643799,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.016866911202669144,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 3.1676011085510254,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.01690635271370411,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 3.2191660404205322,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.016847623512148857,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 3.2128710746765137,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.01671850122511387,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 3.215355157852173,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.016795696690678596,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 3.2441227436065674,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.016780732199549675,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 3.2375288009643555,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.016913283616304398,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 3.219543218612671,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.017352351918816566,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 3.189596652984619,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.0167488195002079,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 3.206613063812256,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.01683894172310829,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 3.189150094985962,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.01718968339264393,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 3.2142493724823,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.016818132251501083,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 3.1623499393463135,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.016692742705345154,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 3.20845103263855,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.01686926931142807,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 3.248866319656372,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.016850603744387627,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 3.2048685550689697,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.01670694909989834,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 3.1928224563598633,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.016560612246394157,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 3.1911444664001465,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.01693088747560978,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 3.1940205097198486,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.017001640051603317,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 3.2179691791534424,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.016574621200561523,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 3.209895133972168,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.016912631690502167,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 3.200780153274536,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.01661100797355175,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 3.236159563064575,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.016951506957411766,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 3.2416586875915527,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.01690569892525673,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 3.1500091552734375,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.016770539805293083,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 3.1477084159851074,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.016958601772785187,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 3.217743158340454,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.017083117738366127,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 3.1841797828674316,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.016744980588555336,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 3.2035722732543945,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.016905121505260468,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 3.2369818687438965,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.01684725284576416,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 3.2269325256347656,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.01702183485031128,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 3.206357002258301,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.01680542156100273,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 3.2596511840820312,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.01694333367049694,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 3.2136905193328857,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.0169835165143013,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 3.2313132286071777,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.016826024278998375,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 3.2091591358184814,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.01672862283885479,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 3.208425760269165,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.016925055533647537,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 3.2123873233795166,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.016674473881721497,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 3.2232813835144043,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.017035890370607376,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 3.223219871520996,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.016546016559004784,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 3.1693038940429688,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.016941620036959648,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 3.191253662109375,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.01687287725508213,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 3.2603273391723633,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.01690494269132614,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 3.2228193283081055,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.01680070348083973,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 3.2282087802886963,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.016806989908218384,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 3.2047462463378906,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.016749607399106026,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 3.2269415855407715,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.016963236033916473,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 3.2035281658172607,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.016887513920664787,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 3.235266923904419,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.016995197162032127,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 3.2235960960388184,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.01688799262046814,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 3.2076051235198975,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.016756217926740646,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 3.2239019870758057,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.016736788675189018,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 3.203939914703369,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.016688963398337364,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 3.2348246574401855,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.016803188249468803,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 3.1978907585144043,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.016566172242164612,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 3.2203474044799805,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.016834227368235588,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 3.2009458541870117,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.017010822892189026,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 3.260282039642334,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.01688871718943119,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 3.177152633666992,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.016468720510601997,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 3.1891486644744873,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.016615666449069977,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 3.221515417098999,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.01685708574950695,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 3.2299835681915283,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.016747066751122475,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 3.2339115142822266,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.01657772623002529,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 3.1767711639404297,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.016621341928839684,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 3.185901165008545,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.01682469993829727,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 3.17289400100708,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.016663428395986557,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 3.171015977859497,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.01680401712656021,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 3.2434072494506836,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.021687129512429237,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 3.223989963531494,
+ "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/l2r50-baseline/checkpoint-3240/training_args.bin b/runs/l2r50-baseline/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-360/chat_template.jinja b/runs/l2r50-baseline/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/config.json b/runs/l2r50-baseline/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/generation_config.json b/runs/l2r50-baseline/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/model.safetensors b/runs/l2r50-baseline/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2a281101f68b03bade91b8ebd0100bd77c85980b
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:95e052780c6bbe507182773446888dada5a46bb61982adb43adad49d4622f597
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-360/optimizer.pt b/runs/l2r50-baseline/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b6c840435f89dafb256d5a40160377add3b1743e
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:befc7c2211866f11ed67a244019182dd61bc0b31f0a04c0e01f190b6e3aecd9e
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-360/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c3dcf55387a71ee2a6afda87f94800657089f6cc
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..26b693a57bc20ed89f333203ee3df5b86d2cc75b
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-360/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..9f43ebb920eaa7f2483f205604373ffec78981af
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-360/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c89f029f8f7c32ec2bc7c6471885e82ebfe5322e
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/scheduler.pt b/runs/l2r50-baseline/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..d63b22e047ab13a6c29adc08f78969e1d6e569ff
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/tokenizer.json b/runs/l2r50-baseline/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-360/trainer_state.json b/runs/l2r50-baseline/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ad45478f0b4ec14bef46d0ffe2d49dcb65a95ce6
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "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/l2r50-baseline/checkpoint-360/training_args.bin b/runs/l2r50-baseline/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-3600/chat_template.jinja b/runs/l2r50-baseline/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/config.json b/runs/l2r50-baseline/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/generation_config.json b/runs/l2r50-baseline/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/model.safetensors b/runs/l2r50-baseline/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5dc18b4f2d6f0579de1cf5e0c520c10f4606de11
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae51cf125e09d42aca8c52cae59b49cb83126c51165daa13fe3be7bf1b9a4ea3
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-3600/optimizer.pt b/runs/l2r50-baseline/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1062d50350adc3e526119f4382b91871643ebdd6
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e40e205c52387d7c4f5302c3f7dee78759397eccf6edb603fdfa86de571bfe72
+size 1166827898
diff --git a/runs/l2r50-baseline/checkpoint-3600/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1a514451b6a50ad9b6de0b7fc4a965cb83108e58
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a6ec8d61675b917843283ea16decabe601854cecb62727b8d6fd0736b1d8e982
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3600/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4b5687b836d8e7154f2f48e4093e48f7463e53d0
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bf4a2454d9040e2fdfe5d3ef7263fb3bdbcaa970303baa7413c80aed2f694675
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3600/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-3600/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..31f9a655287c5cfc3f33b435d1688e36b4b32220
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e25cf1e6918353e4d123a8988a16033aeb3a27afe509656b117bb952c8698b33
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3600/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-3600/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..276e9dddc44b2549c7e379c8e61b12187f2dd7e3
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2366911094763ba47ae31b700e5549017c3b44f5913088fc81788f708e2fa6b0
+size 15024
diff --git a/runs/l2r50-baseline/checkpoint-3600/scheduler.pt b/runs/l2r50-baseline/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dff04aa3b724ae7dec72031a9c3d0ecf0b695f1b
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/tokenizer.json b/runs/l2r50-baseline/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-3600/trainer_state.json b/runs/l2r50-baseline/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5443f8447b8ae7b3d24759e86cd7f69e499aa0aa
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/trainer_state.json
@@ -0,0 +1,25618 @@
+{
+ "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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.378535270690918,
+ "eval_runtime": 62.802,
+ "eval_samples_per_second": 38.884,
+ "eval_steps_per_second": 1.226,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.020407332107424736,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.2047224044799805,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.01917763613164425,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.210314750671387,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02122962847352028,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.215227127075195,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02371819317340851,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.15161657333374,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.024267099797725677,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.208793640136719,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.024089768528938293,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.2162275314331055,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02480364218354225,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.209673881530762,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.027980266138911247,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.180417060852051,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.029953673481941223,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.230701923370361,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.027809318155050278,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.168020725250244,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.030248943716287613,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.207550048828125,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.028732702136039734,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.203512668609619,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02969701774418354,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.231351852416992,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.03295966982841492,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.239712715148926,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.031610529869794846,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.219387531280518,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.029350394383072853,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.232081413269043,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.028336558490991592,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.1969170570373535,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.023210924118757248,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.207862377166748,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.023360323160886765,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.183191299438477,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.021890942007303238,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.21293830871582,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.01858029142022133,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.140407562255859,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.020252948626875877,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1627278327941895,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02037022076547146,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.193161487579346,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.017760271206498146,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.242051601409912,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.018034646287560463,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.191580772399902,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.016794851049780846,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.194297790527344,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01684785820543766,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.183342456817627,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.017180398106575012,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.208702087402344,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.017989611253142357,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1919450759887695,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.019407354295253754,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.211562156677246,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.019376365467905998,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.158386707305908,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.016270067542791367,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.189422607421875,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.016059767454862595,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.16896915435791,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.016504554077982903,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.150223731994629,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01763850823044777,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.138537406921387,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.019269783049821854,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.168245315551758,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018883032724261284,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.1587018966674805,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.016910988837480545,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.189167499542236,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.020175406709313393,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.163915634155273,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.02161630056798458,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.169618606567383,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.018582239747047424,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.136185646057129,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017958499491214752,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.187342643737793,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.021561242640018463,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.144287109375,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.022715559229254723,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.15969705581665,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.025038348510861397,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.151215076446533,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.02406514622271061,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.147668838500977,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.02328246645629406,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.170004367828369,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.024405496194958687,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.169342041015625,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.023054689168930054,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.177750110626221,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.023335423320531845,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.144839286804199,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02380729839205742,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.155163288116455,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.023000337183475494,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.1802978515625,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.02142930030822754,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.152113437652588,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.022921722382307053,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.133922576904297,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.024137504398822784,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.1732916831970215,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.021304504945874214,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.141149520874023,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02118385210633278,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.142203330993652,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.01931806281208992,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.141829967498779,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.019238421693444252,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.154687404632568,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.019327452406287193,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.139423847198486,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.018001895397901535,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.143027305603027,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.01561815571039915,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.135494232177734,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.01653515361249447,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.1620988845825195,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.015783410519361496,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.179717063903809,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.014908524230122566,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.144383430480957,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.014673077501356602,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.140820503234863,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.015967873856425285,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.135244369506836,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.018385669216513634,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.150403022766113,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.021566137671470642,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.140208721160889,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.024951491504907608,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.164062976837158,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.02570200525224209,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.149723052978516,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02622622437775135,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.1473493576049805,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.30231237411499,
+ "eval_runtime": 64.047,
+ "eval_samples_per_second": 38.128,
+ "eval_steps_per_second": 1.202,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.0252956822514534,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.102043151855469,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.026901746168732643,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.078264236450195,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.030633514747023582,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.080199241638184,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.029238834977149963,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.087159633636475,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02962150052189827,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.122290134429932,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.028606466948986053,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.10768985748291,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02721092663705349,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.105955123901367,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.026081575080752373,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.103598594665527,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.0258317980915308,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.0895280838012695,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.027114257216453552,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.106650352478027,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030242424458265305,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.105982780456543,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02777072601020336,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.08390998840332,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.023641085252165794,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.116336345672607,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02689310535788536,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.083228588104248,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.026457805186510086,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.11756706237793,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.026692915707826614,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.118802547454834,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.028721334412693977,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.114062309265137,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.02511158213019371,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.111483573913574,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.02136423997581005,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.130492210388184,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.019176218658685684,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.106202602386475,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.018969949334859848,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.081089973449707,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.01749129220843315,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.0723066329956055,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.016979243606328964,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08980655670166,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.016359271481633186,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.0843424797058105,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.0172689538449049,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.08027458190918,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.016483373939990997,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.128406524658203,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.015482612885534763,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.114174842834473,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.017750835046172142,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.0836639404296875,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.017400816082954407,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100748538970947,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.015724875032901764,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.092519283294678,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.01578364148736,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.076988697052002,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.01637136936187744,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.061633110046387,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.01684153825044632,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.073139667510986,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.018235204741358757,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.122166633605957,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.017668064683675766,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.0742902755737305,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.016021890565752983,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.116153717041016,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.016733642667531967,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.055490493774414,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.018116209656000137,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.073486804962158,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.02019660174846649,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.041533946990967,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.0208735354244709,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.098537445068359,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.017468487843871117,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.032740592956543,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.01592290960252285,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.053094863891602,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.018618132919073105,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.092944145202637,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.020230578258633614,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.1252546310424805,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.019204435870051384,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.072412967681885,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018527409061789513,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.088846683502197,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019393499940633774,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.064204692840576,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.021075937896966934,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.077027320861816,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.022665424272418022,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.034626007080078,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.018603486940264702,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.06827974319458,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.01589510403573513,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.073869228363037,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.016864879056811333,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.047836780548096,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.016813850030303,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.058669090270996,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.018268994987010956,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.051197052001953,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.018666405230760574,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.094308853149414,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01876799762248993,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.065156936645508,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.0168667770922184,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.069952487945557,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.01849750056862831,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.058396816253662,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017501885071396828,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.1056647300720215,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.016991520300507545,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.057600498199463,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01850823685526848,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.0779523849487305,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.020983079448342323,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.070823669433594,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.021714383736252785,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.048792839050293,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02033362165093422,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.083934783935547,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.021058330312371254,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.018019676208496,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.0235394686460495,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.0684332847595215,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.024356942623853683,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.035460948944092,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.024439381435513496,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.066934108734131,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.022744350135326385,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.08734130859375,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024203650653362274,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.090044975280762,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02515997365117073,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.0565185546875,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.023086093366146088,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0804924964904785,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.2374186515808105,
+ "eval_runtime": 63.2066,
+ "eval_samples_per_second": 38.635,
+ "eval_steps_per_second": 1.218,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.02136831544339657,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.028512001037598,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.02528711035847664,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.032022476196289,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.026449045166373253,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.997192859649658,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.027867168188095093,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.0268659591674805,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.02608586475253105,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.022824287414551,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.02481897734105587,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.076618671417236,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.025600822642445564,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.029087066650391,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.022499825805425644,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0298566818237305,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.022879071533679962,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.992314100265503,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.025372836738824844,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.015429496765137,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.030749106779694557,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.026670455932617,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.02951565384864807,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.035066604614258,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.025728223845362663,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.038754463195801,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.02789878100156784,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.0326385498046875,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.026779133826494217,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9909892082214355,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02390645444393158,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.032719135284424,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.025712035596370697,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.016173362731934,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.029831798747181892,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.029515266418457,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.027563726529479027,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.031573295593262,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.025866059586405754,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.9818038940429688,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.02459959127008915,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.041299819946289,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.022183317691087723,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.020695686340332,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.021529436111450195,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9970788955688477,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.019899316132068634,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.001920223236084,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.019861288368701935,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.010859489440918,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.020002085715532303,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.067376613616943,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.0212252177298069,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.016942977905273,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.01978185400366783,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.007467269897461,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.019412506371736526,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.99772310256958,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.021743489429354668,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.0034661293029785,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.025363976135849953,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9926016330718994,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02655455283820629,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.9986321926116943,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02496419847011566,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.944706678390503,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.023083670064806938,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.049671173095703,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01949864998459816,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.015955448150635,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.02187274768948555,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.9537644386291504,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.020859625190496445,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.000150203704834,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.02015174925327301,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.002395153045654,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.020250685513019562,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.9886677265167236,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017840120941400528,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.013311386108398,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016190627589821815,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.970487117767334,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.017567187547683716,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.004099369049072,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.017133748158812523,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.9995803833007812,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.015192059800028801,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.994652032852173,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.015130906365811825,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.996361494064331,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.014856657944619656,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.036397457122803,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.016897641122341156,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.9882538318634033,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.01787130907177925,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.00166130065918,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.01604701764881611,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.020539283752441,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.01527593657374382,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.010574817657471,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.017139561474323273,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9856514930725098,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01968846097588539,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.023260116577148,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.01878122240304947,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9934682846069336,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.017266470938920975,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.9839186668395996,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01749890297651291,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9900569915771484,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017640138044953346,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.01155948638916,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01938844844698906,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9769136905670166,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.01963098719716072,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.040825366973877,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.0180090069770813,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.011550426483154,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.01728258654475212,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.998645782470703,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016819514334201813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.001415729522705,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.01621781289577484,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.974463939666748,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.016776228323578835,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9578723907470703,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.016432231292128563,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.9893603324890137,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.01663380302488804,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.9443955421447754,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.016359275206923485,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.022719383239746,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.015825260430574417,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9603402614593506,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.016644814983010292,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9699785709381104,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01655726507306099,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.9860341548919678,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01753232441842556,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.984231472015381,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01750142127275467,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9759538173675537,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019036246463656425,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.992687702178955,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.181066036224365,
+ "eval_runtime": 60.1271,
+ "eval_samples_per_second": 40.614,
+ "eval_steps_per_second": 1.281,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.01835867576301098,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.924830436706543,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.01785600185394287,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.923452377319336,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.019703425467014313,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.936220169067383,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.02264595963060856,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.9275708198547363,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.022403456270694733,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.9149694442749023,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.02124122902750969,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.942723274230957,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.024583332240581512,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.903569221496582,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.025410648435354233,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.9455490112304688,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.029830409213900566,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8975071907043457,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.032496288418769836,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.97796630859375,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.031235214322805405,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.942502498626709,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.029731467366218567,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.984740734100342,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.029115382581949234,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9644343852996826,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.024361208081245422,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.9624767303466797,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.025655964389443398,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9577674865722656,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.02550007402896881,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.906022787094116,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.02639457769691944,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.9523401260375977,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.025793183594942093,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.933011293411255,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.02479766122996807,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.9519145488739014,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.025732610374689102,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9497013092041016,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.030057275667786598,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9513020515441895,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03134274110198021,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.008859634399414,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03035309910774231,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.97611927986145,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.02602315880358219,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.955684185028076,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.0258258655667305,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.943971633911133,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.028202341869473457,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9545280933380127,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.025344984605908394,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.947442054748535,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02295084297657013,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.971492290496826,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.022998977452516556,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.9361281394958496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021282808855175972,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9683704376220703,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.02042253315448761,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.907276153564453,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.017536107450723648,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.951361656188965,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018085474148392677,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.968926429748535,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01831931248307228,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.94305419921875,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.018854353576898575,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.9287381172180176,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.018268929794430733,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.929600715637207,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016126133501529694,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9654431343078613,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.015584539622068405,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.908278226852417,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.018300848081707954,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.920149803161621,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.016917573288083076,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.9603261947631836,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.017244771122932434,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9500532150268555,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.018155300989747047,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.9231691360473633,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016890663653612137,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.940095901489258,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.015165095217525959,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.909634590148926,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.015241894870996475,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.906181573867798,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016088273376226425,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9586219787597656,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.014891140162944794,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9696993827819824,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.014309341087937355,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9485011100769043,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.01563441753387451,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.9534077644348145,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.01694062352180481,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.974160671234131,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01689014956355095,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.9022469520568848,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.01777421124279499,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.944934129714966,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.018190287053585052,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.9344778060913086,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01752999797463417,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9385628700256348,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.0167219378054142,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.92803692817688,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017584407702088356,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.9149136543273926,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016311852261424065,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.9069983959198,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01459934376180172,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.8936049938201904,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.0182663481682539,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9539287090301514,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.019909832626581192,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.9222524166107178,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.022751986980438232,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.926799774169922,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.02719840593636036,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.9307940006256104,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.0267998855561018,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.932499885559082,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.025545373558998108,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.909381151199341,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.022743795067071915,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.931206703186035,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.02192285656929016,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.9469642639160156,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.020502792671322823,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.9153547286987305,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.019137512892484665,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9860148429870605,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018557589501142502,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8990478515625,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018213093280792236,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9467179775238037,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017762277275323868,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.9348058700561523,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01860608346760273,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.897644281387329,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.1393842697143555,
+ "eval_runtime": 59.8164,
+ "eval_samples_per_second": 40.825,
+ "eval_steps_per_second": 1.287,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01910410262644291,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.863401174545288,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.021821267902851105,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.9108033180236816,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02315429598093033,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.858642816543579,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02135794423520565,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.920208692550659,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.023457663133740425,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.880579710006714,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02568184584379196,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.878047227859497,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.026762887835502625,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.9008405208587646,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.03197381645441055,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.879142999649048,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.030459733679890633,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.8302879333496094,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.025175059214234352,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.88291072845459,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.026236647740006447,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.868386745452881,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.024464551359415054,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8615169525146484,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.024874066933989525,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.888662815093994,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02403041534125805,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8673043251037598,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.023759834468364716,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.8838469982147217,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.021455537527799606,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8745734691619873,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.018253061920404434,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.864886522293091,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.019782833755016327,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8775925636291504,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.020087899640202522,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.8754663467407227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.018042970448732376,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.845428466796875,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.016960283741354942,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.838954210281372,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.015838636085391045,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.850834608078003,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.01512292679399252,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.8975727558135986,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.016229107975959778,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.8330583572387695,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.016918284818530083,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.87094783782959,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.016689898446202278,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.860142707824707,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.01679115556180477,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.9012155532836914,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.016389150172472,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.905102014541626,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.015301300212740898,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.874518871307373,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.016977472230792046,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.864999532699585,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.01647939905524254,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8850197792053223,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.015793217346072197,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8941540718078613,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.015054670162498951,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.89732027053833,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.015697432681918144,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.9058706760406494,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.014965604059398174,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.898862361907959,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.016077442094683647,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.811664342880249,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.016429739072918892,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.875919818878174,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.017665820196270943,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.853415012359619,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.01651313714683056,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.871959924697876,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01621035858988762,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.900909423828125,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.01701526902616024,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.873223066329956,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.0170503631234169,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.8988208770751953,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.01662210002541542,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.888749837875366,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.017720118165016174,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.872681140899658,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01855429634451866,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.862710952758789,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.0184614434838295,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8923702239990234,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.018881477415561676,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.8498177528381348,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01859811134636402,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8804826736450195,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018399035558104515,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.9301161766052246,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01828509382903576,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.858283042907715,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.018989572301506996,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.888256311416626,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.020469317212700844,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.8988149166107178,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.02028230018913746,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8755686283111572,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020091824233531952,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.827394485473633,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.021220674738287926,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.878847122192383,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.02262030728161335,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.902834892272949,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.02202986739575863,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.8920905590057373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.020254680886864662,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.9091620445251465,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.019972924143075943,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.84443998336792,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.020916417241096497,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.885322332382202,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.018756408244371414,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.9099950790405273,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.020159050822257996,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.865659713745117,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.02082892879843712,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.887948989868164,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.021274155005812645,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.8970792293548584,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.020785154774785042,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.8718788623809814,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019989237189292908,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.887974739074707,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.02100340463221073,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.8777031898498535,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.020995501428842545,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.906202793121338,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.01999513804912567,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.847105026245117,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01894516870379448,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.9002819061279297,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.01995951309800148,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.8522915840148926,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.018755843862891197,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8862924575805664,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.103536605834961,
+ "eval_runtime": 59.3334,
+ "eval_samples_per_second": 41.157,
+ "eval_steps_per_second": 1.298,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01714909076690674,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.8343186378479004,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.020581025630235672,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.7992172241210938,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.020043322816491127,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.8194546699523926,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.022650765255093575,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.84289288520813,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02335503324866295,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.8192009925842285,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.022875186055898666,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.8491461277008057,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.023315446451306343,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.830833673477173,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.02430523931980133,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.804030418395996,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025060707703232765,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.7918334007263184,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.022837979719042778,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.827371120452881,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.023934414610266685,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.836869716644287,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.024616891518235207,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.824789047241211,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.02345423214137554,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.8342037200927734,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.02400883100926876,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.8402116298675537,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.024152884259819984,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.8356361389160156,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.022965069860219955,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.8314034938812256,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.020740646868944168,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.860668659210205,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.0192450862377882,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.8410749435424805,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.018672680482268333,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.8266773223876953,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.019331563264131546,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.846005439758301,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.020317573100328445,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.8087213039398193,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.020821943879127502,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.829660654067993,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.019366465508937836,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.800051212310791,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.01810828037559986,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.8389892578125,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.017819052562117577,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.8303701877593994,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.017942773178219795,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.839263916015625,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.01713077537715435,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.813082218170166,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.017191408202052116,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.8323869705200195,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.01809086464345455,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.8396859169006348,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.019340381026268005,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.82763934135437,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02076535113155842,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.840414524078369,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.024983739480376244,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.845263719558716,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.02312391996383667,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.8368492126464844,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.020181559026241302,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.815359354019165,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.020318614318966866,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.833752393722534,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020133383572101593,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.84110164642334,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.01905316673219204,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.823373556137085,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.018278267234563828,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.830862045288086,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.01835646666586399,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.864996910095215,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.017635274678468704,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.812549114227295,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018322058022022247,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.853882312774658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019239868968725204,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.8151965141296387,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.01887403428554535,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.811345100402832,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.0192184429615736,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.82307767868042,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.017776599153876305,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.82700514793396,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.01821805164217949,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.8067967891693115,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.018839582800865173,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.789121627807617,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.01718149334192276,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.8090462684631348,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.015785127878189087,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.826633930206299,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01670878380537033,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.821876049041748,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01607382856309414,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.81522274017334,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01712258718907833,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.797916889190674,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01733105629682541,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.835799217224121,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.0168596263974905,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.819136619567871,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.01543869823217392,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.830913543701172,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.015893764793872833,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.858492374420166,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.01697690598666668,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.828495502471924,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.01720457337796688,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.8430421352386475,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.017180688679218292,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.822899580001831,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.020136376842856407,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.827232837677002,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.022172173485159874,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.8100879192352295,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.023059368133544922,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.8269147872924805,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.023624371737241745,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.802137851715088,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.02444405108690262,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.8278281688690186,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.022276461124420166,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.8350024223327637,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.022215748205780983,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.8467488288879395,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022731397300958633,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.8136346340179443,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022438080981373787,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.8319613933563232,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020715415477752686,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.8416805267333984,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.018057528883218765,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7941391468048096,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01761937513947487,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.7490148544311523,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021768540143966675,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.805572032928467,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.074253082275391,
+ "eval_runtime": 64.7596,
+ "eval_samples_per_second": 37.709,
+ "eval_steps_per_second": 1.189,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.022697044536471367,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.7663698196411133,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.025382883846759796,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.7818310260772705,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025519154965877533,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.74359393119812,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026445776224136353,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.7835285663604736,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.02636389061808586,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.8103153705596924,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.026996586471796036,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.7459239959716797,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.02514846995472908,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.759098529815674,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.02254457026720047,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.7467238903045654,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.0185365229845047,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.769829511642456,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.01821294054389,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.769523859024048,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.016783924773335457,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.795154094696045,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.01639423333108425,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.777859926223755,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.017885133624076843,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7991929054260254,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.0177337396889925,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.739090919494629,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.017432348802685738,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7940917015075684,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.01683618128299713,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.755810260772705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.017153693363070488,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.7615315914154053,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.01811281591653824,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.7822585105895996,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.018965881317853928,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.7683420181274414,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.018932979553937912,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.777143955230713,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.018192006275057793,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.8231968879699707,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.017332658171653748,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.8063888549804688,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.019073987379670143,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.7589569091796875,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02139705792069435,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.805058002471924,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02223067171871662,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.788921356201172,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.022300776094198227,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.7817821502685547,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.020688990131020546,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.764315605163574,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.021937401965260506,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.7874717712402344,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.022369712591171265,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.757232189178467,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.02041521482169628,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.7777881622314453,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.018430065363645554,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.7403619289398193,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.01762046478688717,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.7760043144226074,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.018036186695098877,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.764007806777954,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.018722420558333397,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.792691707611084,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01745152845978737,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.8148117065429688,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.017662564292550087,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7822742462158203,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.0176963210105896,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.7663626670837402,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.015750030055642128,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.7747702598571777,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.016655415296554565,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.784818172454834,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.01623496226966381,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.7751307487487793,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.016711808741092682,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.821042060852051,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.01755720004439354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.748715400695801,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.01702534593641758,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.7545080184936523,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.017275067046284676,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.809129476547241,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.01773146539926529,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.751976728439331,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.018775923177599907,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.787644863128662,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.0179451871663332,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.755279541015625,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01756259985268116,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.818486213684082,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017693238332867622,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.8082430362701416,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.017654089257121086,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.745116710662842,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.016869202256202698,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.797025203704834,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.01748330146074295,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.749203681945801,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.018639083951711655,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.7678651809692383,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.01736178621649742,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.797579050064087,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.016823455691337585,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.788339614868164,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.019974300637841225,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.7774643898010254,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.02130241133272648,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.7993645668029785,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.0213412307202816,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.8094897270202637,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.020209642127156258,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.8248746395111084,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019961416721343994,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.7585291862487793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020646795630455017,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.7677154541015625,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.02026360109448433,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.777365207672119,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018292706459760666,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.73484206199646,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020635735243558884,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7826597690582275,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021759552881121635,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.831138849258423,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.018315201625227928,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.7445709705352783,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.023072058334946632,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.785590410232544,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.023440392687916756,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.789520502090454,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.020271241664886475,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.780035972595215,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.02000470831990242,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.781261444091797,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.018554240465164185,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.7559471130371094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.01920494996011257,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.834333896636963,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.053543567657471,
+ "eval_runtime": 63.9646,
+ "eval_samples_per_second": 38.177,
+ "eval_steps_per_second": 1.204,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.01861673779785633,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.7513113021850586,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.01924830861389637,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.7197494506835938,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.020985852926969528,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.732412815093994,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.019542362540960312,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.7108631134033203,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.019613953307271004,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.7200045585632324,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.019712915644049644,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.76081919670105,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.021575115621089935,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.7046682834625244,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.023251524195075035,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.701650857925415,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.025314657017588615,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.7081284523010254,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.022600680589675903,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.6926422119140625,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0204667579382658,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.723160982131958,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.020743781700730324,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.7220711708068848,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.020848799496889114,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.7437477111816406,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.0205425713211298,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.727893829345703,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.020752789452672005,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.69146466255188,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0234021358191967,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.7197885513305664,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02671368233859539,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.7370293140411377,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.02710716612637043,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.7598257064819336,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.025202477350831032,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.727973699569702,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.022259404882788658,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.7332653999328613,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.021903665736317635,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.7558889389038086,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.021314790472388268,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.7290589809417725,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.020645512267947197,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.730478525161743,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.018329299986362457,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.7160584926605225,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.01965133100748062,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.7833266258239746,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.020253468304872513,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.741056442260742,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.02116810902953148,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.7494120597839355,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.022070227190852165,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.7453253269195557,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.022480584681034088,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.7230119705200195,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02134551666676998,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.7244653701782227,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022542068734765053,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.711869239807129,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.0212439876049757,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.750123977661133,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.019948823377490044,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.715768814086914,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.020368656143546104,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.749180316925049,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.017802072688937187,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.756239175796509,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.018730925396084785,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.743999719619751,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.01965710148215294,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.712941884994507,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.019637009128928185,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.7769887447357178,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.0203404501080513,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.7270402908325195,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.0191668588668108,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.750926971435547,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.01802191138267517,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.7301442623138428,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.017820516601204872,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.7209062576293945,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.017875485122203827,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.7594106197357178,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.01670205593109131,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.797253131866455,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01541657093912363,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.737715005874634,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.016512956470251083,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.744131088256836,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.017438765615224838,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.7360215187072754,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.0167564544826746,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.731358051300049,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.018318448215723038,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.7281100749969482,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017284512519836426,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.750964879989624,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.016714967787265778,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.7306010723114014,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01719631254673004,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.758632183074951,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018453262746334076,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.76287841796875,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020163467153906822,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.747366428375244,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.020323829725384712,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.7469444274902344,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.019069846719503403,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.729736089706421,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.018286895006895065,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.7536206245422363,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.019190168008208275,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.713416337966919,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01892833039164543,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.751642942428589,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.017773408442735672,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.7597568035125732,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.017041252925992012,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.756230592727661,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.016657846048474312,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.7325243949890137,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016162483021616936,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.7124691009521484,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.01615242101252079,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.749433994293213,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.017490938305854797,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.7214808464050293,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.018068036064505577,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.7483716011047363,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01755748689174652,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.71488881111145,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.016069207340478897,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.7502620220184326,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.015002886764705181,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.7170443534851074,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.015414859168231487,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.7423558235168457,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.01561794150620699,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.7434675693511963,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.017989614978432655,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.7178776264190674,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.030296325683594,
+ "eval_runtime": 65.8745,
+ "eval_samples_per_second": 37.07,
+ "eval_steps_per_second": 1.169,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.018553443253040314,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.6758816242218018,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.019008463248610497,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.7035884857177734,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.01937331259250641,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.699059009552002,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.021779218688607216,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.6724586486816406,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.0225706547498703,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.6629600524902344,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.02355271577835083,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.721950054168701,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.023677725344896317,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.7221384048461914,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.023262441158294678,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.709118127822876,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.02454032003879547,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.6926698684692383,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.023638663813471794,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.6474552154541016,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.022688185796141624,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.713801860809326,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02508113533258438,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.688356637954712,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.025609107688069344,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.678615093231201,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02546383999288082,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.696279525756836,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.02424756810069084,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.725135326385498,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.024043938145041466,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.6696691513061523,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024257667362689972,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.6816201210021973,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.02444876730442047,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.6737983226776123,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.023732848465442657,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.699908971786499,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.022119682282209396,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.674351930618286,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02133573219180107,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.699631452560425,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.020344527438282967,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.6991796493530273,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.018892833963036537,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.7251946926116943,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.020185034722089767,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.6759328842163086,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02199169248342514,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.7027502059936523,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.019428860396146774,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.6975839138031006,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.01743907853960991,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.6937670707702637,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.0171643178910017,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.7077064514160156,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.018865332007408142,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.661086320877075,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.01836227811872959,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.684056282043457,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.01688198558986187,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.727952003479004,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.01698186993598938,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.7085483074188232,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.016925550997257233,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.6768383979797363,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.016865234822034836,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.6942639350891113,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.01776815392076969,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.740084171295166,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.01732732355594635,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.7146358489990234,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.017078688368201256,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.6773934364318848,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.01609811745584011,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.6844658851623535,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.018287215381860733,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.7163147926330566,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018904827535152435,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.697554111480713,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019055791199207306,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.6747868061065674,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.019212186336517334,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.6918530464172363,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.02051704190671444,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.716765880584717,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02014104090631008,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.6974830627441406,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.019965138286352158,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.719616651535034,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.019269850105047226,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.7345309257507324,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.016484195366501808,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.681046485900879,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.017034651711583138,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.681638717651367,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01758810505270958,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.703812837600708,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.016545845195651054,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.684119462966919,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.016782967373728752,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.722416400909424,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.016753917559981346,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.717517137527466,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.017131879925727844,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.699528217315674,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.017412634566426277,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.688706398010254,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.01716681197285652,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.6740024089813232,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.016873842105269432,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.7224769592285156,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.016906514763832092,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.6805758476257324,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017654407769441605,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.6915955543518066,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01630152016878128,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6996469497680664,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.01708369143307209,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6881368160247803,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.017195580527186394,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.7296738624572754,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.01692916639149189,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.716885805130005,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.016493480652570724,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.7062995433807373,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018150698393583298,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.703418016433716,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.020170683041214943,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.7162132263183594,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.020892243832349777,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.6852266788482666,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01921824924647808,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.6613335609436035,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.018615424633026123,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.6914520263671875,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.018841251730918884,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.7119507789611816,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01886296458542347,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.686913251876831,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.017974618822336197,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.727166175842285,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020204445347189903,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.7316067218780518,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.016366958618164,
+ "eval_runtime": 61.8543,
+ "eval_samples_per_second": 39.48,
+ "eval_steps_per_second": 1.245,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02111821435391903,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.637906551361084,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.02163618616759777,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.6383767127990723,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.02068520523607731,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.670985698699951,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.022003140300512314,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.6336865425109863,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.0214079562574625,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.6382100582122803,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.01973418891429901,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.634355068206787,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.01872972771525383,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.6503634452819824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.018216725438833237,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.650639295578003,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.017973756417632103,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.6541130542755127,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.019416220486164093,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.660295009613037,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.01886790618300438,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.621006965637207,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.019083745777606964,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.6263811588287354,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.019343476742506027,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.6218082904815674,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.019826039671897888,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.6264708042144775,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.019140169024467468,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.668168306350708,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.019686145707964897,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.6657941341400146,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.01934291049838066,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.644308567047119,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.019167931750416756,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.6584410667419434,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.018080467358231544,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.654919147491455,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.018310803920030594,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.67191219329834,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.01835723966360092,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.6745200157165527,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.020350150763988495,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.6651012897491455,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.021326130256056786,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.6554105281829834,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.02112557739019394,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.656968116760254,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.02019728161394596,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.657785415649414,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.021956849843263626,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.6898350715637207,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.020395012572407722,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.6197826862335205,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.018778927624225616,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.5901966094970703,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019269181415438652,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.654449224472046,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.01911710388958454,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.6465048789978027,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.018293682485818863,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.663846015930176,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.018979955464601517,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.6604809761047363,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018500933423638344,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.6931025981903076,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.01894785836338997,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.6811861991882324,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.017279667779803276,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.6572582721710205,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.017218250781297684,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.688918352127075,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.017715126276016235,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.6794016361236572,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.018248988315463066,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.7000322341918945,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.017767472192645073,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.681626081466675,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.017594916746020317,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.6565380096435547,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01828833296895027,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.663778781890869,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.019030045717954636,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.6650474071502686,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.01988360844552517,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.68524169921875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.019899051636457443,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.685650110244751,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01806033030152321,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.6898751258850098,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.01745474338531494,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.6685805320739746,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.017676150426268578,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.699904441833496,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.017533812671899796,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.6770570278167725,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.017777029424905777,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.652797222137451,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.017443744465708733,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.6673898696899414,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.017116336151957512,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.6816627979278564,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.01691078394651413,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.6313583850860596,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.015711549669504166,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.6878581047058105,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.01675310544669628,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.669032335281372,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.015859972685575485,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.641685724258423,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.016469936817884445,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.670741558074951,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.018147999420762062,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.699977159500122,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.016910554841160774,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.6655242443084717,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01720215566456318,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.657040596008301,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.018839411437511444,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.6707494258880615,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019323477521538734,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.6633293628692627,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.019563967362046242,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.6565229892730713,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.019220713526010513,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.6670587062835693,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.01798902079463005,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.6380364894866943,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.01774473488330841,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.6884419918060303,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017221471294760704,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.6749119758605957,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.01653563790023327,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.669022798538208,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.01694747619330883,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.672104597091675,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018159836530685425,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.655977964401245,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.02019244059920311,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.673520565032959,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.022300586104393005,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.6544008255004883,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02209911122918129,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.6847968101501465,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.000479698181152,
+ "eval_runtime": 64.3156,
+ "eval_samples_per_second": 37.969,
+ "eval_steps_per_second": 1.197,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.019171515479683876,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.6146576404571533,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.029560890048742294,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.578632354736328,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.034528084099292755,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.629316568374634,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.02737526223063469,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.641772508621216,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.02798760123550892,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.625882148742676,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.02773364819586277,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.6310617923736572,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.022892283275723457,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.6257591247558594,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.024298714473843575,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.6206982135772705,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.022809971123933792,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.5972416400909424,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.021506676450371742,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.6367249488830566,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.02100779116153717,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.6314430236816406,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.02046670764684677,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.622314453125,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.01920282281935215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.5983352661132812,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.018287379294633865,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.62841534614563,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.01890639029443264,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.6545276641845703,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.018238598480820656,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.6231801509857178,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.018301337957382202,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.61362361907959,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.018709948286414146,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.649864435195923,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.018304288387298584,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.6360278129577637,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.01800202578306198,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.5961854457855225,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.01644146628677845,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.616757392883301,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.016907401382923126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.616844415664673,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.017845915630459785,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.6238276958465576,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.01847461611032486,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.614250659942627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.019995402544736862,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.625789165496826,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.0210600383579731,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.658642292022705,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.020240698009729385,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.628429651260376,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.019870596006512642,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.623499870300293,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02023415081202984,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.6485698223114014,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.0191744826734066,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.6343982219696045,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.019206566736102104,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.6244659423828125,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.019260425120592117,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.629183292388916,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.017619282007217407,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.6229794025421143,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.018997663632035255,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.6103463172912598,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.018864557147026062,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.6568450927734375,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.020265625789761543,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.6321444511413574,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.018948514014482498,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.6557939052581787,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.01907648704946041,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.591909885406494,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01855263113975525,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.607360363006592,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.01677682250738144,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.654608726501465,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.01704152673482895,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.6355104446411133,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.01756068877875805,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.636542797088623,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.018291156738996506,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.6323752403259277,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.01796036958694458,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.5942678451538086,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01905522495508194,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.649648666381836,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02019699476659298,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.6304869651794434,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.01976633071899414,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.648162841796875,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.017903033643960953,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.630420684814453,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.018289994448423386,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.5931591987609863,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.01785500906407833,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.62947940826416,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.01801769994199276,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.651362419128418,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01749393530189991,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.6162731647491455,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.016658306121826172,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.651395797729492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.016271064057946205,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.5890064239501953,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.016859276220202446,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.6407647132873535,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.018112532794475555,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.650465965270996,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.018847720697522163,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.628610134124756,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.01726500689983368,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.630589723587036,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.016844259575009346,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.6345770359039307,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.01698433607816696,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.642946481704712,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01768191158771515,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.6997480392456055,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.016587071120738983,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.6255366802215576,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.016483861953020096,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.6419034004211426,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018121112138032913,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.6461048126220703,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.017336688935756683,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.659646987915039,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.01671045832335949,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.588848352432251,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.018601354211568832,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.6082282066345215,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.020069336518645287,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.65175199508667,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02229866199195385,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.6860857009887695,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.022450270131230354,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.6258633136749268,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.020953422412276268,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.625462293624878,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.020883647724986076,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.6424570083618164,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 3.988544464111328,
+ "eval_runtime": 60.5404,
+ "eval_samples_per_second": 40.337,
+ "eval_steps_per_second": 1.272,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.019364871084690094,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.567018508911133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.02429145947098732,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.576113224029541,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.025450890883803368,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.618898391723633,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.02235233224928379,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.555053472518921,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.02358541265130043,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.570950746536255,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.025065140798687935,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.559093952178955,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.021693460643291473,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.6053004264831543,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.02215164341032505,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.606872320175171,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.02327892929315567,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.5842905044555664,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.022144556045532227,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.59818172454834,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02111351490020752,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.6004116535186768,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.020380254834890366,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.6117827892303467,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.01910373754799366,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.619020462036133,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.02041677013039589,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.593928575515747,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.019204240292310715,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.5607151985168457,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.017505863681435585,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.583655834197998,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.017345501109957695,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.554304599761963,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.017401495948433876,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.558385133743286,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.017342569306492805,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.6073145866394043,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.017753712832927704,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.5626883506774902,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.018545007333159447,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.5863921642303467,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.018115270882844925,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.5957236289978027,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.017398905009031296,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.579759120941162,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.018338555470108986,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.591341495513916,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.019243156537413597,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.625352621078491,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.018756818026304245,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.59213924407959,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.018111370503902435,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.574284553527832,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.018766526132822037,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.599088668823242,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.019410746172070503,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.6074745655059814,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.018934061750769615,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.607318639755249,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.019572453573346138,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.593384265899658,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.021879423409700394,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.6126949787139893,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.021802010014653206,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.6113052368164062,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.020925434306263924,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.6365818977355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.02047079987823963,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.634796619415283,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.018976684659719467,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.593341588973999,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.018691295757889748,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.600808620452881,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.016731545329093933,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.6032166481018066,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.017844276502728462,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.60429310798645,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.01955541968345642,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.616420269012451,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.017668744549155235,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.6173579692840576,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.017636047676205635,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.6231729984283447,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.016725800931453705,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.6003293991088867,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.018036559224128723,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.6155035495758057,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.01724333129823208,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.611673593521118,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.017709186300635338,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.5904765129089355,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.017459416761994362,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.621422529220581,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.018765194341540337,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.5513052940368652,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.016920888796448708,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.5683388710021973,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.01678687334060669,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.599825143814087,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018111256882548332,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.5974392890930176,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01823987066745758,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.6119165420532227,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.01873212866485119,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.6121368408203125,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.017720866948366165,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.592301845550537,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01637716218829155,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.588088274002075,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.01686469465494156,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.5819528102874756,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.01855911687016487,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.5782361030578613,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.01814582757651806,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.616151809692383,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018401121720671654,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.6003775596618652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.01815873384475708,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.601687431335449,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01834259182214737,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.6432278156280518,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.01762698031961918,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.625823497772217,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.017282260581851006,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.5725834369659424,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.017021410167217255,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.605581283569336,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.017562078312039375,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.6390647888183594,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.017928456887602806,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.6468143463134766,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.016581198200583458,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.616852283477783,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.016112972050905228,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.6200897693634033,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01631663180887699,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.582191228866577,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.016651224344968796,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.576904296875,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.016377931460738182,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.5957937240600586,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.017889222130179405,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.623018741607666,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 3.9813897609710693,
+ "eval_runtime": 59.4366,
+ "eval_samples_per_second": 41.086,
+ "eval_steps_per_second": 1.295,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.01739376038312912,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.5538415908813477,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.018770433962345123,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.5624170303344727,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.021585287526249886,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.548196315765381,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.022716926410794258,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.5778675079345703,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.024046463891863823,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.5520527362823486,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.02317720465362072,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.5171375274658203,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.02239379845559597,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.566284656524658,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.02128404937684536,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.5756583213806152,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.02001846954226494,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.5681705474853516,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.01969003491103649,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.550114631652832,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.019286802038550377,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.581120014190674,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.01853383518755436,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.5624518394470215,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.01932191662490368,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.5374016761779785,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.018444843590259552,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.5650525093078613,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.01778884418308735,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.547726631164551,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.017777109518647194,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.5587451457977295,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.019000671803951263,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.5391767024993896,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.018518714234232903,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.5868122577667236,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.01961873471736908,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.551490306854248,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.02015182003378868,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.55649733543396,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.020513389259576797,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.5637624263763428,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.01870984211564064,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.5864510536193848,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.01749306172132492,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.5188961029052734,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.018964126706123352,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.58482027053833,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.01817002333700657,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.5612308979034424,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.017514878883957863,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.5486984252929688,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.018597887828946114,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.576368808746338,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.017213039100170135,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.542661666870117,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.016339635476469994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.562289237976074,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.017966926097869873,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.5344831943511963,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.01763552986085415,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.5613832473754883,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.01818809099495411,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.5687596797943115,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.01886226423084736,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.5764074325561523,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.01899052783846855,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.563948631286621,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.01729794591665268,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.5712246894836426,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.017822522670030594,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.5474045276641846,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.01817474700510502,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.568105697631836,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.0177927203476429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.5574707984924316,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.016719907522201538,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.5889577865600586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.017440157011151314,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.580923080444336,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.018534725531935692,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.54072642326355,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.016303658485412598,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.5704493522644043,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.01762840710580349,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.5857253074645996,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.018691420555114746,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.551226854324341,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.017360666766762733,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.6126480102539062,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.01831839419901371,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.5589728355407715,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.019132982939481735,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.599449634552002,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.019041378051042557,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.5491185188293457,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.018594784662127495,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.60493803024292,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.018072307109832764,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.641139507293701,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.017715614289045334,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.606940746307373,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.018789587542414665,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.558372974395752,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.018661441281437874,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.5513243675231934,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.01825002208352089,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.5856339931488037,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.018493155017495155,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.5736050605773926,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.01849057897925377,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.618640422821045,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.018234198912978172,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.574103355407715,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.018258022144436836,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.56695556640625,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.016852134838700294,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.536787509918213,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.01713961735367775,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.605578660964966,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.01776042766869068,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.5943589210510254,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.018809625878930092,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.591933488845825,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.017702974379062653,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.611487627029419,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.01670198142528534,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.6162376403808594,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.017571093514561653,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.561999559402466,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.0185534805059433,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.570073127746582,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.017159467563033104,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.5525615215301514,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.017352312803268433,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.604581356048584,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.0176923256367445,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.593242645263672,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.01646212674677372,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.575906753540039,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01796668954193592,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.585683822631836,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.019403008744120598,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.551283121109009,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 3.9723880290985107,
+ "eval_runtime": 62.241,
+ "eval_samples_per_second": 39.235,
+ "eval_steps_per_second": 1.237,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02018159255385399,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.5205564498901367,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.024699678644537926,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.538332939147949,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.02687106840312481,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.500544786453247,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.027606500312685966,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.53733229637146,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.028544260188937187,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.5815742015838623,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0258558951318264,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.5224766731262207,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.026392828673124313,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.545175075531006,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.029806284233927727,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.5326621532440186,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.027113547548651695,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.4786064624786377,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.02408759295940399,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.530863046646118,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.023250695317983627,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.497561454772949,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.022769831120967865,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.5318992137908936,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.01766813173890114,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.5438523292541504,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.02073035202920437,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.493313789367676,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.0201302170753479,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.5580708980560303,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.020987430587410927,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.5167837142944336,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02093544974923134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.5771193504333496,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.019648104906082153,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.4997386932373047,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.01950559951364994,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.5114588737487793,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.01988653652369976,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.5192079544067383,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.02228010632097721,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.5289759635925293,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.019914569333195686,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.53596568107605,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.020144281908869743,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.54305362701416,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.020842332392930984,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.53192138671875,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.020085008814930916,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.5426502227783203,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.017339227721095085,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.536336898803711,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.01818188652396202,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.510249614715576,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.018745100125670433,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.543651580810547,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.01751793920993805,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.5291430950164795,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.01893082819879055,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.571364402770996,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.018171347677707672,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.5394766330718994,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.017086612060666084,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.539705514907837,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.017067214474081993,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.5440802574157715,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0172305665910244,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.5579423904418945,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.01607706770300865,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.5654008388519287,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.016254613175988197,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.5307490825653076,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.016277002170681953,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.5495665073394775,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.015567352995276451,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.5287725925445557,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.0162222720682621,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.5822150707244873,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.016328036785125732,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.5594048500061035,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.017501957714557648,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.5658936500549316,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.017671164125204086,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.5195255279541016,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.017056908458471298,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.5287811756134033,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.017422640696167946,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.5767014026641846,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.01783704198896885,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.518000364303589,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.017785770818591118,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.57950496673584,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.016665808856487274,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.5306150913238525,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.016751093789935112,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.552121639251709,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.01702127233147621,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.5574817657470703,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.016572067514061928,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.5635671615600586,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.01655161939561367,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.5447945594787598,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.01795736886560917,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.5349934101104736,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.01751149818301201,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.5323710441589355,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.01855647563934326,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.5059657096862793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.018458228558301926,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.5618419647216797,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.019731899723410606,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.5624160766601562,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.01854592002928257,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.5490190982818604,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.018698742613196373,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.5876734256744385,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.019644012674689293,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.5864834785461426,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.01927870698273182,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.5399694442749023,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.019518082961440086,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.5734801292419434,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.018586432561278343,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.5650575160980225,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.01685892604291439,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.515932321548462,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.016890332102775574,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.5787596702575684,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.01679457351565361,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.5607142448425293,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.016137368977069855,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.5373551845550537,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.017931262031197548,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.5536108016967773,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.017267098650336266,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.6045525074005127,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.01695381850004196,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.5602059364318848,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.01727745682001114,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.5576224327087402,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.01595747098326683,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.5406153202056885,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.01880115643143654,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.5483760833740234,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 3.9697673320770264,
+ "eval_runtime": 62.6162,
+ "eval_samples_per_second": 38.999,
+ "eval_steps_per_second": 1.23,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.017892682924866676,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.4911413192749023,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.019525716081261635,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.518493175506592,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.020324867218732834,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.5172839164733887,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.019601259380578995,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.478424549102783,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.017889535054564476,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.5202183723449707,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.01722591556608677,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.517833709716797,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.017270967364311218,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.546541929244995,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.01737041398882866,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.4916648864746094,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.01689036935567856,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.5184028148651123,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.01737411506474018,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.4713590145111084,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.01711965724825859,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.4977149963378906,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.01962786540389061,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.5247957706451416,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.01972607523202896,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.4938361644744873,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.01775587536394596,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.5470051765441895,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.016953488811850548,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.5403249263763428,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.017742028459906578,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.499879837036133,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.01795274391770363,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.487330436706543,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.017365364357829094,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.514014720916748,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.019874103367328644,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.5078370571136475,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.018650704994797707,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.475647449493408,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.01811475306749344,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.465089797973633,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.018007898703217506,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.533270835876465,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.016939492896199226,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.510157346725464,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.018187886103987694,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.5193674564361572,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.018000459298491478,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.4840645790100098,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.017485564574599266,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.493328094482422,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.018711261451244354,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.5360090732574463,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.020028429105877876,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.5094046592712402,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.019052844494581223,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.4691481590270996,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.017309514805674553,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.4683890342712402,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.01833847537636757,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.5442402362823486,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.01786205731332302,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.4846351146698,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.018390176817774773,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.4945549964904785,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.018938139081001282,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.50541090965271,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.01808563992381096,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.5351452827453613,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.017792172729969025,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.5570616722106934,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.018235448747873306,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.519821882247925,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.018671656027436256,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.521660327911377,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.01880931295454502,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.529345989227295,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.018627896904945374,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.526881217956543,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.017936361953616142,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.5098953247070312,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.017510859295725822,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.5265510082244873,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.019331997260451317,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.5109400749206543,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.018494144082069397,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.506432294845581,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.01725063845515251,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.5188841819763184,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.018340352922677994,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.532425880432129,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.017857391387224197,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.5345821380615234,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.017643660306930542,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.5020432472229004,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.017457911744713783,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.549823760986328,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.01658516749739647,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.5259203910827637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.016423549503087997,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.4899277687072754,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.01643756404519081,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.494115114212036,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.017486298456788063,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.560194969177246,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.01744215376675129,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.532907009124756,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.01679479144513607,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.518857717514038,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.018596593290567398,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.5025525093078613,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.019369663670659065,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.5203018188476562,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.01942215859889984,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.524986982345581,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.018074439838528633,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.5071821212768555,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.018628474324941635,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.5219063758850098,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.019045569002628326,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.545119285583496,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.01778481900691986,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.5529963970184326,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.018407966941595078,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.5171544551849365,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.01789373718202114,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.5296449661254883,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.018313728272914886,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.5373899936676025,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.01767117716372013,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.479165554046631,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.016479669138789177,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.5042262077331543,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.017440950497984886,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.546144485473633,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.01805770769715309,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.5370864868164062,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.01579529047012329,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.53056263923645,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.016918832436203957,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.5597097873687744,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.019256822764873505,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.5699524879455566,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 3.9668192863464355,
+ "eval_runtime": 59.7448,
+ "eval_samples_per_second": 40.874,
+ "eval_steps_per_second": 1.289,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.01895272172987461,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.4655308723449707,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.0206465981900692,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.456347942352295,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.021339893341064453,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.4679999351501465,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.021127765998244286,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.4543442726135254,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.02075084298849106,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.4941041469573975,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.020014401525259018,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.4785819053649902,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.019297510385513306,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.5006165504455566,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.020143838599324226,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.5038743019104004,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.019436940550804138,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.4647061824798584,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.019416574388742447,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.4757144451141357,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.018273303285241127,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.4821829795837402,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.0193482618778944,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.486717939376831,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.018939225003123283,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.4995615482330322,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.018757406622171402,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.478853702545166,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.018794208765029907,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.4686648845672607,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.019849533215165138,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.44936466217041,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.017794709652662277,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.4726390838623047,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.018498266115784645,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.4935479164123535,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.020185040310025215,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.4993715286254883,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.0197488684207201,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.488629102706909,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.018577605485916138,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.463611364364624,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.018072819337248802,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.433458089828491,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.017909955233335495,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.46743106842041,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.017891421914100647,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.510708808898926,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.017307734116911888,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.4369726181030273,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.019437436014413834,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.483191967010498,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.020199673250317574,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.506659507751465,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.018461620435118675,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.52777361869812,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.018418388441205025,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.4900410175323486,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.019452253356575966,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.4596498012542725,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.01981848105788231,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.5019569396972656,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.019489169120788574,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.493274688720703,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.017666205763816833,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.4854674339294434,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.018194179981946945,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.464219093322754,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.018553493544459343,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.52459716796875,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.018783342093229294,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.4779176712036133,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.018300117924809456,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.4834327697753906,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.016716109588742256,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.5340709686279297,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.0180519986897707,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.4652693271636963,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.017762597650289536,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.520275115966797,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.016915665939450264,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.484226703643799,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.017562730237841606,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.503143787384033,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.017763083800673485,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.5216102600097656,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.017134003341197968,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.459318161010742,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.017334967851638794,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.503740072250366,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.018297912552952766,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.5073437690734863,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.016978446394205093,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.479010581970215,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.018022775650024414,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.4845454692840576,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.017773890867829323,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.511157751083374,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.017100736498832703,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.5245039463043213,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.01903403550386429,
+ "learning_rate": 0.000303,
+ "loss": 3.5196127891540527,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.019149888306856155,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.529757022857666,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.017584891989827156,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.4859747886657715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.017863815650343895,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.531475067138672,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.01691904291510582,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.5179905891418457,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.016864124685525894,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.454268217086792,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.017918378114700317,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.5012617111206055,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.01676037721335888,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.5219480991363525,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.01847025193274021,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.5377297401428223,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.018975937739014626,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.507004976272583,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.016559354960918427,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.4815826416015625,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.018526967614889145,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.515927314758301,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.017936473712325096,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.5180106163024902,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.016746483743190765,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.49497652053833,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.016190055757761,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.5065670013427734,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.01770264096558094,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.520918369293213,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.018389247357845306,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.5104870796203613,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.01625588908791542,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.5063014030456543,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.018390661105513573,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.4983432292938232,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.017851997166872025,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.4671382904052734,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.01709488220512867,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.5293564796447754,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.020290598273277283,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.4583382606506348,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 3.963580846786499,
+ "eval_runtime": 59.72,
+ "eval_samples_per_second": 40.891,
+ "eval_steps_per_second": 1.289,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.020780518651008606,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.4834160804748535,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.025042658671736717,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.444469928741455,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.0249223243445158,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.471982002258301,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.022936193272471428,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.444572687149048,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.020676013082265854,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.4065611362457275,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.02019929699599743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.4570608139038086,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.02004287950694561,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.484922409057617,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.02029941976070404,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.4986963272094727,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.020057478919625282,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.445338487625122,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.02228299155831337,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.483475923538208,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.02322900854051113,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.4487721920013428,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.02177809737622738,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.446108341217041,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.019677769392728806,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.4320807456970215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.019688908010721207,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.4385204315185547,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.022444449365139008,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.454873561859131,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.02132454887032509,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.417757987976074,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.019102852791547775,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.4758338928222656,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.019153913483023643,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.4548845291137695,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.018708474934101105,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.41184139251709,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.018964219838380814,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.4620611667633057,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.01894865743815899,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.462468147277832,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.01778542436659336,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.4635019302368164,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.01781347393989563,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.4695935249328613,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.018062470480799675,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.4512240886688232,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.018868396058678627,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.478242874145508,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.018648196011781693,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.488654613494873,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.01821073703467846,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.415480613708496,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.017095481976866722,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.4678256511688232,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.019249994307756424,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.4535183906555176,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.01782015897333622,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.4813966751098633,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.01768648251891136,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.4406304359436035,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.018398065119981766,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.5028929710388184,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.018166350200772285,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.4500198364257812,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.017817072570323944,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.479569911956787,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.017651008442044258,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.487365484237671,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.017052030190825462,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.4818499088287354,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.016867922618985176,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.458005905151367,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.019170604646205902,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.4821205139160156,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.01869809441268444,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.461486339569092,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.017185309901833534,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.4753856658935547,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.018102167174220085,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.5052707195281982,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.01819782890379429,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.4518673419952393,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.019287217408418655,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.4718570709228516,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.019887477159500122,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.521130084991455,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.01915234513580799,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.469726085662842,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.017925266176462173,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.4749679565429688,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.017552683129906654,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.492969274520874,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.018236950039863586,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.4670491218566895,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.01720520667731762,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.4750189781188965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.01775733195245266,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.479222536087036,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.01812276616692543,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.459787607192993,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.01904568076133728,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.5087194442749023,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.01938941702246666,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.446824550628662,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.019309647381305695,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.491738796234131,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.017283691093325615,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.493600368499756,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.016226667910814285,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.475055694580078,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.018183575943112373,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.4631152153015137,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.018759222701191902,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.4848737716674805,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.01769597828388214,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.434507131576538,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.018075186759233475,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.4512555599212646,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.01827143132686615,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.4821510314941406,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.016271373257040977,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.527249574661255,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.01738668791949749,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.496260643005371,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.01751634106040001,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.489319324493408,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.01708020083606243,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.522711753845215,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.01802200637757778,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.468125104904175,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.01686692237854004,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.473863124847412,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.018587907776236534,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.4831924438476562,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.01865585334599018,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.5089101791381836,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.018999487161636353,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.466235876083374,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.01811971701681614,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.487901210784912,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.019976072013378143,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.5207200050354004,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 3.9621336460113525,
+ "eval_runtime": 61.1865,
+ "eval_samples_per_second": 39.911,
+ "eval_steps_per_second": 1.258,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.019912846386432648,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.3985512256622314,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.024092121049761772,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.418576955795288,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.025791682302951813,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.438657522201538,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.02268844284117222,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.40936017036438,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.019450107589364052,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.4093122482299805,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.019663041457533836,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.4370360374450684,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.02180861309170723,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.401123523712158,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.019850924611091614,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.4346837997436523,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.01967731863260269,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.4286041259765625,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.021333033218979836,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.4089221954345703,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.019694557413458824,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.4345288276672363,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.019076067954301834,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.3857693672180176,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.019870081916451454,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.4427146911621094,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.019260870292782784,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.4654557704925537,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.019225789234042168,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.4689555168151855,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.018402278423309326,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.413832664489746,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.01897112838923931,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.463106632232666,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.017959903925657272,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.4246349334716797,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.01858312077820301,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.428595542907715,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.018829360604286194,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.431976318359375,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.01736574061214924,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.4456610679626465,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.018335754051804543,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.4379255771636963,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.017936233431100845,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.4841232299804688,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.01732073538005352,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.4084701538085938,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.01764756441116333,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.434319257736206,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.01841113530099392,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.48443341255188,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.018168708309531212,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.447305679321289,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.017524663358926773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.444819927215576,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02032609097659588,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.431865692138672,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.018760820850729942,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.4857521057128906,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.01954142563045025,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.4749484062194824,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.01863463968038559,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.4594125747680664,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.018121957778930664,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.462247848510742,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.020321296527981758,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.473355770111084,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.020091157406568527,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.44814395904541,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.018810130655765533,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.4815800189971924,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.01748197339475155,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.4565114974975586,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.01935272477567196,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.4282071590423584,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.020307231694459915,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.4802942276000977,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.018399840220808983,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.4127840995788574,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.017388368025422096,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.4655821323394775,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.017165357246994972,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.4485411643981934,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.018523339182138443,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.463998556137085,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.017113015055656433,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.4211177825927734,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.01753869280219078,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.4926679134368896,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.01966564543545246,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.4498205184936523,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.018401050940155983,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.4501113891601562,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.017483070492744446,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.444553852081299,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.017510205507278442,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.4368369579315186,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.017599117010831833,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.4243321418762207,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.017932835966348648,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.4390244483947754,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.017309516668319702,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.4360458850860596,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.01870712824165821,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.458862781524658,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.018164832144975662,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.436872959136963,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.019033480435609818,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.4607229232788086,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.01908167265355587,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.4636034965515137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.01771005615592003,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.445199489593506,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.017116276547312737,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.476942539215088,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.018403125926852226,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.483548641204834,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.01699613407254219,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.4688446521759033,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.017341643571853638,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.4211671352386475,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.017147235572338104,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.465404510498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.01729694940149784,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.4884610176086426,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.017307840287685394,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.4440464973449707,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.01669687032699585,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.4840574264526367,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.01770629547536373,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.473775863647461,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.018066268414258957,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.46079158782959,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.01776258274912834,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.4646782875061035,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.01719190552830696,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.465542793273926,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.017640043050050735,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.479426860809326,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.018124815076589584,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.469224452972412,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.020947884768247604,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.4448342323303223,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 3.961923599243164,
+ "eval_runtime": 60.6839,
+ "eval_samples_per_second": 40.241,
+ "eval_steps_per_second": 1.269,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.018345043063163757,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.3847005367279053,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.024673614650964737,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.3936479091644287,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.023461783304810524,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.4155068397521973,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.02139718271791935,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.4172348976135254,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.022412599995732307,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.422422409057617,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.023503335192799568,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.4016504287719727,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.02148125134408474,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.4122307300567627,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.02075907029211521,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.4226012229919434,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.021128104999661446,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.4198601245880127,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.020960180088877678,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.4601449966430664,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.02125578559935093,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.4069151878356934,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.019701316952705383,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.461728572845459,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.01824156567454338,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.418145179748535,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.020667055621743202,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.4467804431915283,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.018905561417341232,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.419218063354492,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.01803084835410118,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.4285359382629395,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.018299192190170288,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.4270992279052734,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.01827562414109707,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.417841911315918,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.0181428212672472,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.417778730392456,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.018655981868505478,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.4135940074920654,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.018191451206803322,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.436255931854248,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.018264364451169968,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.395883560180664,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.01833369955420494,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.424318790435791,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.01866809092462063,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.392127513885498,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.017266878858208656,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.3780999183654785,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.01782945729792118,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.441495656967163,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.019177967682480812,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.432274341583252,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.018710168078541756,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.370002269744873,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.01873788796365261,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.4115757942199707,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.018670711666345596,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.407710313796997,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.016954626888036728,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.4291176795959473,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.017591385170817375,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.4588255882263184,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.01834861934185028,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.4035706520080566,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.017938101664185524,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.401681900024414,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.017014481127262115,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.4659478664398193,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.018274560570716858,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.413947105407715,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.017524776980280876,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.4482595920562744,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.017516497522592545,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.4256112575531006,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.017602261155843735,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.464900016784668,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.01672697253525257,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.4517221450805664,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.018115540966391563,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.455399990081787,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.017758352681994438,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.382112503051758,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.01796640083193779,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.379214286804199,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.018408501520752907,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.4585118293762207,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.017774110659956932,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.4428935050964355,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.019005993381142616,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.430894374847412,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.01825624890625477,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.398871898651123,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.017513982951641083,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.458927631378174,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.018035512417554855,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.4393792152404785,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.017681388184428215,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.420281410217285,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.01752026565372944,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.421967029571533,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.017383750528097153,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.488022804260254,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.017369642853736877,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.4330923557281494,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.017170915380120277,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.4847517013549805,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.018619880080223083,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.445941925048828,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.017903277650475502,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.4373133182525635,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.017392519861459732,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.4088053703308105,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.018057744950056076,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.3827738761901855,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.018045147880911827,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.4172282218933105,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.01774677447974682,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.4111135005950928,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.018675483763217926,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.4543533325195312,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.01890777423977852,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.436513662338257,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.01714302785694599,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.4339404106140137,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.01799493283033371,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.487741231918335,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.018368041142821312,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.4808623790740967,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.018794607371091843,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.4406328201293945,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.018004035577178,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.4440250396728516,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.01753157377243042,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.4302077293395996,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.017021680250763893,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.408231735229492,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.017755234614014626,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.4298901557922363,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.017229322344064713,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.448316812515259,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.01962321437895298,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.4169070720672607,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 3.9616544246673584,
+ "eval_runtime": 65.9803,
+ "eval_samples_per_second": 37.011,
+ "eval_steps_per_second": 1.167,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.019193001091480255,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.4050145149230957,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.019462959840893745,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.3970870971679688,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.01883731596171856,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.4042983055114746,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.018952246755361557,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.385344982147217,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.01955745369195938,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.3938591480255127,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.018866099417209625,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.373230218887329,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.01949951983988285,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.3986949920654297,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.019971610978245735,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.360102891921997,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.019477443769574165,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.392760992050171,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.018458299338817596,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.3768515586853027,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.0199594683945179,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.3532989025115967,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.01768285408616066,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.392155170440674,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.01838548295199871,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.352297782897949,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.019307192414999008,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.4088239669799805,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.01806057058274746,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.397526264190674,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.017745690420269966,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.403240203857422,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.01854657381772995,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.378720283508301,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.017849335446953773,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.4231362342834473,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.01832255721092224,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.3873050212860107,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.017942968755960464,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.4016880989074707,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.01710812747478485,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.3777270317077637,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.018718259409070015,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.386936664581299,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.019576137885451317,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.4325475692749023,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.019076485186815262,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.3955230712890625,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.019532006233930588,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.3632805347442627,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.019326776266098022,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.4010233879089355,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.018273938447237015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.347320079803467,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.018561091274023056,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.433877468109131,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.018709097057580948,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.4183356761932373,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.018022265285253525,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.4214649200439453,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.01795581355690956,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.4257490634918213,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.018068306148052216,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.4248106479644775,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.01741054281592369,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.4057626724243164,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.01920531503856182,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.419201612472534,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.020076720044016838,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.364243507385254,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.019320771098136902,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.4166758060455322,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.018370522186160088,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.3875954151153564,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.018850428983569145,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.4547061920166016,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.01825353503227234,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.421639919281006,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.019217118620872498,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.389070987701416,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.018638942390680313,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.407712936401367,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.017846768721938133,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.4532341957092285,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.018291272222995758,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.4042930603027344,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.017709648236632347,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.421402931213379,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.017348773777484894,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.41768741607666,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0190060343593359,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.401763677597046,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.018145151436328888,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.4228663444519043,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.017218708992004395,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.4383559226989746,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.01807982474565506,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.441455841064453,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.017581624910235405,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.417386770248413,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.016385234892368317,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.430408239364624,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.018257347866892815,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.441180944442749,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.016987234354019165,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.3837966918945312,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.018253926187753677,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.4105005264282227,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.017789114266633987,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.396979570388794,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.017308581620454788,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.444622039794922,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.017247803509235382,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.407770872116089,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.01750587485730648,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.4184064865112305,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.018543049693107605,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.414088249206543,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.017576420679688454,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.4110798835754395,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.016934648156166077,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.3960723876953125,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.018137667328119278,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.445399045944214,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.018090933561325073,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.3903958797454834,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.017409203574061394,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.4429993629455566,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.017465865239501,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.409397602081299,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.018192371353507042,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.409186840057373,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.017598532140254974,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.4059994220733643,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.017320340499281883,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.4299216270446777,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.019035857170820236,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.4485421180725098,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.017793111503124237,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.396441698074341,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.016964446753263474,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.4195380210876465,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.021174993366003036,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.428013324737549,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 3.9667880535125732,
+ "eval_runtime": 62.2277,
+ "eval_samples_per_second": 39.243,
+ "eval_steps_per_second": 1.237,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.01875605247914791,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.38484525680542,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.018568016588687897,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.3507912158966064,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.019872169941663742,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.353137969970703,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.01876811869442463,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.375810384750366,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.018586816266179085,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.399104595184326,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.020378353074193,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.3919358253479004,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.019244177266955376,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.3788328170776367,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.0193084217607975,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.3619728088378906,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.019315209239721298,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.3798677921295166,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.018572242930531502,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.3925108909606934,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.01862615905702114,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.351928234100342,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.01858530193567276,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.348261833190918,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.018370235338807106,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.392763376235962,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.019499799236655235,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.378734588623047,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.018300920724868774,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.375892400741577,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.018973981961607933,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.3861308097839355,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.01848417893052101,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.369990587234497,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.01829555258154869,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.3849124908447266,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.018444348126649857,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.3794360160827637,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.018307942897081375,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.385989189147949,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.0177899319678545,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.4433321952819824,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.017565859481692314,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.3808670043945312,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.017919441685080528,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.4058759212493896,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.017944026738405228,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.4076156616210938,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.01726466603577137,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.3993449211120605,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.01821359619498253,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.388521194458008,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.018399931490421295,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.355663776397705,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.018190836533904076,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.3569793701171875,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.017945483326911926,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.422205924987793,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.017825208604335785,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.405452251434326,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.018042994663119316,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.409529447555542,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.018815988674759865,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.3680338859558105,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.0177475456148386,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.3957064151763916,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.01767324097454548,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.426119565963745,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.017502157017588615,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.3860602378845215,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.01826084591448307,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.3443658351898193,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.018149342387914658,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.441053628921509,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.01743144541978836,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.369959831237793,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.018931198865175247,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.3382790088653564,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.01852957159280777,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.393571138381958,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.01744253933429718,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.4136338233947754,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.0188548993319273,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.420109748840332,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.01842757686972618,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.38987398147583,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.018423188477754593,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.3657498359680176,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.01937674544751644,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.3901844024658203,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.019053233787417412,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.39098858833313,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.018784556537866592,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.375641345977783,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.019018791615962982,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.3715341091156006,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.018060091882944107,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.385960578918457,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.019320931285619736,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.3708150386810303,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.018254855647683144,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.378389835357666,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.018344849348068237,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.3670427799224854,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.01864561252295971,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.3780577182769775,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.017792504280805588,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.3890440464019775,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.01926976628601551,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.399027109146118,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.01768679916858673,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.399245262145996,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.017078734934329987,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.3935627937316895,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.017845293506979942,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.4019460678100586,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.01667986437678337,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.3843274116516113,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.017841368913650513,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.420551300048828,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.01789095811545849,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.3795599937438965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.017387472093105316,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.404527425765991,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.017727486789226532,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.368422031402588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.018426265567541122,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.4203758239746094,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.017427532002329826,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.3813066482543945,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.01781563088297844,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.377004384994507,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.017903029918670654,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.390786647796631,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.018497183918952942,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.4222888946533203,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.017774127423763275,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.4386186599731445,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.017519637942314148,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.3773350715637207,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.017004752531647682,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.3996877670288086,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.021300921216607094,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.4059641361236572,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 3.9651381969451904,
+ "eval_runtime": 64.237,
+ "eval_samples_per_second": 38.015,
+ "eval_steps_per_second": 1.199,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.019478417932987213,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.346750259399414,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.022026486694812775,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.3380393981933594,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.021453749388456345,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.3837451934814453,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.018983036279678345,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.373610019683838,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.020668506622314453,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.338237762451172,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.02018234133720398,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.3517379760742188,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0184745155274868,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.33943247795105,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.019766638055443764,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.3328628540039062,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.01948261633515358,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.361790657043457,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.018952930346131325,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.364760398864746,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.019968921318650246,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.343646287918091,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.01876276172697544,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.3668432235717773,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.019649820402264595,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.3603689670562744,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.01976124383509159,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.342262029647827,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.018047695979475975,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.378164052963257,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.01947302557528019,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.3635683059692383,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.020197149366140366,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.3460724353790283,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.01838929019868374,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.318298578262329,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.01938267983496189,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.332218647003174,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.018450573086738586,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.3692564964294434,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.018261199817061424,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.389166831970215,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.019171850755810738,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.3596410751342773,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.018897389993071556,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.363556385040283,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.018566379323601723,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.3412210941314697,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.01843632012605667,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.3628649711608887,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.017748910933732986,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.3751392364501953,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.01864495314657688,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.378866195678711,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.01812228374183178,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.3596580028533936,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.017738813534379005,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.368849754333496,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.018312761560082436,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.400904893875122,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.018566720187664032,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.393960475921631,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.017562083899974823,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.3609988689422607,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.018859874457120895,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.3903446197509766,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.01862078160047531,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.3752737045288086,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.01797969825565815,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.349073648452759,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.018642215058207512,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.3744235038757324,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.01795344427227974,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.3494296073913574,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.01832517795264721,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.3772659301757812,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.018316779285669327,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.34093976020813,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.017998583614826202,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.3537893295288086,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.017405519261956215,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.36969256401062,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.017421456053853035,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.3762929439544678,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.017348214983940125,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.365250587463379,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.017987079918384552,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.3528800010681152,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.01740369200706482,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.34809947013855,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.01767742820084095,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.3873414993286133,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.01786552369594574,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.3993542194366455,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.01840440183877945,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.363851308822632,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.018372777849435806,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.377171516418457,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.018557261675596237,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.3954250812530518,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.018024763092398643,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.38138484954834,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.017409538850188255,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.396350145339966,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.01779399998486042,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.3993735313415527,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.01735842600464821,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.3483355045318604,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.01823486015200615,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.3715901374816895,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.017776019871234894,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.3903591632843018,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.018326254561543465,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.364900827407837,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.01827094703912735,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.3438186645507812,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.01754159666597843,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.3551652431488037,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.017510801553726196,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.3748109340667725,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.01735668070614338,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.403426170349121,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.017473991960287094,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.3682873249053955,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.017098890617489815,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.3883895874023438,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.01794300600886345,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.383709192276001,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.01804060861468315,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.405463457107544,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.018679164350032806,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.36195707321167,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.017713533714413643,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.4066250324249268,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.018171053379774094,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.410841464996338,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.017649803310632706,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.4168691635131836,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.018113741651177406,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.4131321907043457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.017961714416742325,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.3622546195983887,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.021376822143793106,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.376415252685547,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 3.9679276943206787,
+ "eval_runtime": 61.2959,
+ "eval_samples_per_second": 39.84,
+ "eval_steps_per_second": 1.256,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.01854010298848152,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.355283260345459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.021272754296660423,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.342026472091675,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.020176826044917107,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.318216562271118,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.019144972786307335,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.343742847442627,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.019824223592877388,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.313528060913086,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.020314225926995277,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.3193306922912598,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.02053622156381607,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.3684723377227783,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.01978791132569313,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.304171562194824,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.019836056977510452,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.3103976249694824,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.02083844691514969,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.3497042655944824,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.018737798556685448,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.344273805618286,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.01884191669523716,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.3651132583618164,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.01999213732779026,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.3661556243896484,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.018647730350494385,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.2864201068878174,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.02008436620235443,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.3176960945129395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.019128765910863876,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.342780590057373,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.018504656851291656,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.360694408416748,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.019251195713877678,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.353502035140991,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.0191155094653368,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.36004900932312,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.019309870898723602,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.3235840797424316,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.018641646951436996,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.303652763366699,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.019949378445744514,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.337285041809082,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.019760746508836746,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.3083724975585938,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.02001495286822319,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.3428544998168945,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.019619205966591835,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.3327627182006836,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.01893351785838604,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.3344879150390625,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.019357211887836456,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.3769724369049072,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.019030574709177017,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.3382792472839355,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.020675932988524437,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.352922201156616,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.020977795124053955,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.3025388717651367,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.018994763493537903,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.3722734451293945,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.019694602116942406,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.356004238128662,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.018226392567157745,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.382113456726074,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.01841692067682743,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.3366098403930664,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.019732195883989334,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.315749168395996,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.018796177580952644,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.387970209121704,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.019775379449129105,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.370443820953369,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.018852675333619118,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.3536925315856934,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.019294993951916695,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.370649814605713,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.01990549825131893,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.332792282104492,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.01898631826043129,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.3224639892578125,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.018629908561706543,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.335266590118408,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.018405716866254807,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.3959007263183594,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.01788157783448696,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.3351597785949707,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.020106187090277672,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.3679728507995605,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.017606457695364952,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.335587501525879,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.01863827370107174,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.342696189880371,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.019782640039920807,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.369798183441162,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.01814732886850834,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.3451857566833496,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.017988786101341248,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.346390962600708,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.01805048994719982,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.3384218215942383,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.01829634979367256,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.37813663482666,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.01829833723604679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.3628640174865723,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.018536243587732315,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.372694492340088,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.01803603768348694,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.380868434906006,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.017752433195710182,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.3762166500091553,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.01767779514193535,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.34380841255188,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.018236516043543816,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.402556896209717,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.017979485914111137,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.367926597595215,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.017993036657571793,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.346769332885742,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.018208203837275505,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.368234634399414,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.017628569155931473,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.361219882965088,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.018360665068030357,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.413729190826416,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.01757584512233734,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.3906946182250977,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.017810869961977005,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.343019485473633,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.018251191824674606,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.4060416221618652,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.017858365550637245,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.384634494781494,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.01818324811756611,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.384280204772949,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.018480699509382248,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.346285104751587,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.018677543848752975,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.3611297607421875,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.017619142308831215,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.3700506687164307,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.02169172652065754,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.377382278442383,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 3.9741594791412354,
+ "eval_runtime": 61.5554,
+ "eval_samples_per_second": 39.672,
+ "eval_steps_per_second": 1.251,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.018706079572439194,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.330112934112549,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.018803605809807777,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.2816882133483887,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.01853000745177269,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.2921040058135986,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.01803869754076004,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.2959041595458984,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.017079241573810577,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.347280502319336,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.018676968291401863,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.2957611083984375,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.017800159752368927,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.3546934127807617,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.018619297072291374,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.324152946472168,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.017725948244333267,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.3029189109802246,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.018584828823804855,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.339733839035034,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.018017224967479706,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.3224563598632812,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.018421247601509094,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.3387138843536377,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.017832159996032715,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.3309199810028076,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.01841033436357975,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.286250114440918,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.017978807911276817,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.309865951538086,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.018115395680069923,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.351820230484009,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.018109634518623352,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.339370012283325,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.018403902649879456,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.3475425243377686,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.018310097977519035,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.3355088233947754,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.018734650686383247,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.3085222244262695,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.018644677475094795,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.3448398113250732,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.017948374152183533,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.3107964992523193,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.018470020964741707,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.3356473445892334,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.018252935260534286,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.3303258419036865,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.019037144258618355,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.3195786476135254,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.01882040873169899,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.327070474624634,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.018461447209119797,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.381578207015991,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.019000960513949394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.310007333755493,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.018681352958083153,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.3152713775634766,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.018967652693390846,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.32594633102417,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.018034840002655983,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.3330178260803223,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.018646908923983574,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.3461005687713623,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.017740851268172264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.3342158794403076,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.018651707097887993,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.3133187294006348,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.018334193155169487,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.3243541717529297,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.017846569418907166,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.380344867706299,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.01923597976565361,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.3429012298583984,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.01741809956729412,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.3528919219970703,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.01906408555805683,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.2913482189178467,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.01799873635172844,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.3387508392333984,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.018642444163560867,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.3193347454071045,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.018173884600400925,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.363862991333008,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.017236918210983276,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.3342058658599854,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.01799003966152668,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.3633697032928467,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.01782006211578846,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.318671226501465,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.018514500930905342,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.3408515453338623,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.017743313685059547,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.342982292175293,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.01804332435131073,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.362891912460327,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.017191672697663307,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.36106014251709,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.018392067402601242,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.2962214946746826,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.018170949071645737,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.358933925628662,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.018051467835903168,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.3357250690460205,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.017690587788820267,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.372972011566162,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.018124736845493317,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.3036465644836426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.01832064613699913,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.322453737258911,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.017560303211212158,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.356179714202881,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.018004758283495903,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.3430850505828857,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.017548002302646637,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.32066011428833,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.017965545877814293,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.3743958473205566,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.017993371933698654,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.35526704788208,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.017911285161972046,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.333646059036255,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.01756276562809944,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.3324525356292725,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.01796603947877884,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.332352638244629,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.017659401521086693,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.3543365001678467,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.01766570471227169,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.319436550140381,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.017549576237797737,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.3728671073913574,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.018054332584142685,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.3571078777313232,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.01780802756547928,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.3745193481445312,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.017592715099453926,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.349599838256836,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.0175273809581995,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.326724052429199,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.01774190552532673,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.351414203643799,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.021057726815342903,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.355438709259033,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 3.980590343475342,
+ "eval_runtime": 64.0284,
+ "eval_samples_per_second": 38.139,
+ "eval_steps_per_second": 1.203,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.01852157898247242,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.279857635498047,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.01908745802938938,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.322187662124634,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.018606485798954964,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.3020753860473633,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.018377110362052917,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.2937381267547607,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.01929803378880024,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.323049545288086,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.019005702808499336,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.3179938793182373,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.017784560099244118,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.2982497215270996,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.01901211030781269,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.2964975833892822,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.018238209187984467,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.339160919189453,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.019134020432829857,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.2996795177459717,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.01800241880118847,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.3076975345611572,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.018778108060359955,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.325648546218872,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.018111059442162514,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.2866837978363037,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.01902944967150688,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.2555606365203857,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.017556916922330856,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.318284511566162,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.018638404086232185,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.327514410018921,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.018207989633083344,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.3031258583068848,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.017383132129907608,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.2900843620300293,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.018838368356227875,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.316427707672119,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.01785479672253132,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.307969570159912,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.01844528131186962,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.3244309425354004,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.018888844177126884,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.2731080055236816,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.018467606976628304,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.335411548614502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.019145434722304344,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.3307838439941406,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.018448568880558014,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.3589491844177246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.01844393089413643,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.281749725341797,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.01864924281835556,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.3394992351531982,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.01843435876071453,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.335958480834961,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.018971994519233704,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.3345675468444824,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.01797044463455677,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.311155080795288,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.01953919045627117,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.305577039718628,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.01805555634200573,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.334611415863037,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.01828804239630699,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.321223020553589,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.018457863479852676,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.301429271697998,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.019404536113142967,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.2790372371673584,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.017915820702910423,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.3662614822387695,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.018640510737895966,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.327456474304199,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.01786927878856659,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.314758777618408,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.018386350944638252,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.3035807609558105,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.017978228628635406,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.2823503017425537,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.01857025735080242,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.317556142807007,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.0184731837362051,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.3500728607177734,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.018545255064964294,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.3015494346618652,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.017906157299876213,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.3649752140045166,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.018221359699964523,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.3162622451782227,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.018429694697260857,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.297499179840088,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.01882862113416195,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.3677923679351807,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.018744835630059242,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.3383946418762207,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.01775563322007656,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.3351221084594727,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.01871674694120884,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.3395285606384277,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.018029795959591866,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.2882657051086426,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.018112031742930412,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.319117307662964,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.018760433420538902,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.3635196685791016,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.01821206696331501,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.309791088104248,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.018608879297971725,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.3308310508728027,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.019123248755931854,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.3186330795288086,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.018079813569784164,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.33872127532959,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.01852683164179325,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.315091609954834,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.01769738830626011,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.3373889923095703,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.019215177744627,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.335101366043091,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.017887922003865242,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.329543352127075,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.018720639869570732,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.3355422019958496,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.017772076651453972,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.302229881286621,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.01804286427795887,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.3566503524780273,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.017627401277422905,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.334893226623535,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.017679693177342415,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.2954065799713135,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.018215391784906387,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.3217079639434814,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.017763664945960045,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.3080391883850098,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.018400657922029495,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.360480785369873,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.017310120165348053,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.332749366760254,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.01732005923986435,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.3023996353149414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.02136695571243763,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.3171167373657227,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.9839487075805664,
+ "eval_runtime": 64.4777,
+ "eval_samples_per_second": 37.874,
+ "eval_steps_per_second": 1.194,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.018628792837262154,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.3085525035858154,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.01934065669775009,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.275996446609497,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.019491534680128098,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.301079750061035,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.01831379532814026,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.296050786972046,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.018555769696831703,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.2560927867889404,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.01922718994319439,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.3310370445251465,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.018664665520191193,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.2992236614227295,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.01841133087873459,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.25832200050354,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.02053012326359749,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.2908620834350586,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.01921696588397026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.259072780609131,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.018401997163891792,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.301300525665283,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.019370075315237045,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.2989721298217773,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.01793838106095791,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.2667601108551025,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.018552329391241074,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.321544885635376,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.018189920112490654,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.2556686401367188,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.017952604219317436,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.2973861694335938,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.01864135079085827,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.312366485595703,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.018349099904298782,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.2565629482269287,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.018149899318814278,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.29868745803833,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.01827981509268284,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.292799711227417,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.01792013831436634,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.321580410003662,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.017162339761853218,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.2954297065734863,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.018131613731384277,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.3083887100219727,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.01798122748732567,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.3444621562957764,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.017841525375843048,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.3026833534240723,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.01803119294345379,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.281219720840454,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.018162449821829796,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.277799367904663,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.018028786405920982,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.2889952659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.017529798671603203,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.313809871673584,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.01811928115785122,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.333418369293213,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.01779293268918991,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.293541193008423,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.018098467960953712,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.2701730728149414,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.017646370455622673,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.309724807739258,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.019019491970539093,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.2928850650787354,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.017994478344917297,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.3098504543304443,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.018143892288208008,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.2963194847106934,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.01818154565989971,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.2958524227142334,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.0183187797665596,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.2874345779418945,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.017786474898457527,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.2910757064819336,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.017657335847616196,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.299335479736328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.017966900020837784,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.331350564956665,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.017846832051873207,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.3195853233337402,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.018276406452059746,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.2835865020751953,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.018248995766043663,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.3075971603393555,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.01825234480202198,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.323974132537842,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.0178872998803854,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.277646541595459,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.017811937257647514,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.262815475463867,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.018097421154379845,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.2911031246185303,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.017817489802837372,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.291011095046997,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.017519952729344368,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.3111133575439453,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.018086353316903114,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.29461669921875,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.017423808574676514,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.316877841949463,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.01739143580198288,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.343290328979492,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.017492949962615967,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.2867960929870605,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.01771623082458973,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.337468147277832,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.017315423116087914,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.3162851333618164,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.017791584134101868,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.2925267219543457,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.01794111542403698,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.324666738510132,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.017818832769989967,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.314690351486206,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.018544992431998253,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.3311715126037598,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.01775962859392166,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.3389463424682617,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.018356498330831528,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.3347792625427246,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.018026728183031082,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.2906317710876465,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.018123000860214233,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.3188047409057617,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.018297648057341576,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.3061704635620117,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.017799632623791695,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.3368611335754395,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.017928048968315125,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.326777458190918,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.018105698749423027,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.3189263343811035,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.017497455701231956,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.37094783782959,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.018238704651594162,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.371366500854492,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.018718887120485306,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.3076930046081543,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.022466568276286125,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.325347423553467,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 3.989081859588623,
+ "eval_runtime": 61.2795,
+ "eval_samples_per_second": 39.85,
+ "eval_steps_per_second": 1.257,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.018786108121275902,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.2681350708007812,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.02124481461942196,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.281920909881592,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.01866064965724945,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.2950901985168457,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.019922351464629173,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.2939810752868652,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.018888959661126137,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.2506773471832275,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.01963820308446884,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.243678331375122,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.019207993522286415,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.2991080284118652,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.018969031050801277,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.264408588409424,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.019303269684314728,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.269500732421875,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.018705174326896667,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.257845401763916,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.019264446571469307,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.263430595397949,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.018027326092123985,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.28702449798584,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.019376209005713463,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.252567768096924,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.018585721030831337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.24939227104187,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.01962319202721119,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.2504074573516846,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.018904808908700943,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.2754735946655273,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.020670494064688683,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.3274216651916504,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.019269540905952454,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.277693033218384,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.01851348951458931,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.30722713470459,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.019418980926275253,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.2839508056640625,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.018420031294226646,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.2727484703063965,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.01860026642680168,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.2800397872924805,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.018214095383882523,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.2605395317077637,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.018570467829704285,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.298377275466919,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.018116766586899757,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.2953498363494873,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.018491394817829132,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.269218921661377,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.018195809796452522,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.2816600799560547,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.01736897975206375,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.304725170135498,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.018366357311606407,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.2991557121276855,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.01782357692718506,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.2722220420837402,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.017849192023277283,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.2539634704589844,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.017683928832411766,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.2979817390441895,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.017911190167069435,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.286712646484375,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.018424000591039658,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.292938232421875,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.01728540100157261,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.2891898155212402,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.018603453412652016,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.317518711090088,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.018080297857522964,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.273111581802368,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.018728841096162796,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.3038439750671387,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.018404530361294746,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.267301082611084,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.01816863939166069,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.2716097831726074,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.01830720156431198,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.278252601623535,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.017528850585222244,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.2902517318725586,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.017734181135892868,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.326822519302368,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.017636269330978394,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.296706199645996,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.01809834875166416,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.2940311431884766,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.017481546849012375,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.2835071086883545,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.01803549937903881,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.2979648113250732,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.017897363752126694,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.298192024230957,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.017886117100715637,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.2528061866760254,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.017787186428904533,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.3079915046691895,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.017887486144900322,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.2916650772094727,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.017394157126545906,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.278643846511841,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.018659798428416252,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.3291149139404297,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.017590660601854324,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.273383617401123,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.017796199768781662,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.287100315093994,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.017697831615805626,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.289719343185425,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.01766834408044815,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.3088066577911377,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.017558623105287552,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.310497760772705,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.017388205975294113,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.301988363265991,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.01780710741877556,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.3257439136505127,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.017604323104023933,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.327035903930664,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.017286553978919983,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.321244478225708,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.017773570492863655,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.309398651123047,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.016913311555981636,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.292271614074707,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.018218258395791054,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.2950148582458496,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.01737598143517971,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.2862462997436523,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.01744207926094532,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.305614709854126,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.017681103199720383,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.307971239089966,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.01783016137778759,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.307300567626953,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0171083752065897,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.3298232555389404,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.01770375855267048,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.2668328285217285,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.021273743361234665,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.2889244556427,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.996196985244751,
+ "eval_runtime": 61.3281,
+ "eval_samples_per_second": 39.819,
+ "eval_steps_per_second": 1.256,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.018618006259202957,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.286426067352295,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.019142355769872665,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.271833896636963,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.018891366198658943,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.2249698638916016,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0181980412453413,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.2540817260742188,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.01890307106077671,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.2274742126464844,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.017948197200894356,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.271634578704834,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.0183399748057127,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.2752885818481445,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.01843700371682644,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.239213466644287,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.0186455175280571,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.262913227081299,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.018880294635891914,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.279811382293701,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.018527936190366745,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.265861749649048,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.01842155121266842,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.2417643070220947,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.01889784075319767,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.277313709259033,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.01868009753525257,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.294278860092163,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.01869044452905655,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.2623791694641113,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.018669607117772102,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.2748589515686035,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.019066302105784416,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.2807693481445312,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.018781524151563644,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.267548084259033,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.01900012046098709,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.268430233001709,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.01811046153306961,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.249452829360962,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.01891542598605156,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.2876968383789062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.018590277060866356,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.2591049671173096,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.018163183704018593,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.27728271484375,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.018146511167287827,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.2909622192382812,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.018476741388440132,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.275810480117798,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.019072428345680237,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.270618200302124,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.01850801706314087,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.2636537551879883,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.018887825310230255,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.2576699256896973,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.018549323081970215,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.233875036239624,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.019004428759217262,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.317328453063965,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.018481610342860222,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.2798519134521484,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.018844828009605408,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.2724647521972656,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.017980510368943214,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.2837905883789062,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.01842239312827587,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.282580852508545,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.01806344836950302,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.2639782428741455,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.018828753381967545,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.2765626907348633,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.018340127542614937,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.279996395111084,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.018503865227103233,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.291977643966675,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.018294846639037132,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.26834774017334,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.01829240843653679,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.2692995071411133,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.019312310963869095,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.306288719177246,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.018151750788092613,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.2955055236816406,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.01843264140188694,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.2564001083374023,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.01815878413617611,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.309749126434326,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.018385276198387146,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.2828011512756348,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.017592385411262512,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.2743144035339355,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.01778801716864109,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.3009839057922363,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.01784433424472809,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.270941734313965,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.017775509506464005,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.294405937194824,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.01790355145931244,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.3317418098449707,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.01766853779554367,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.2788710594177246,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.018095338717103004,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.3081836700439453,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.017551491037011147,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.302518367767334,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.018155159428715706,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.2757461071014404,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.01776544377207756,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.2773022651672363,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.017995497211813927,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.281576633453369,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.017745571210980415,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.299907922744751,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.018981626257300377,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.2928647994995117,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.01794815994799137,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.288900852203369,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.017981866374611855,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.3037233352661133,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.017933540046215057,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.3035197257995605,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.017871227115392685,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.3012588024139404,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.01812930777668953,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.274885892868042,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.017512621358036995,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.2652831077575684,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.01803465560078621,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.2784218788146973,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.017772581428289413,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.2738118171691895,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.017899878323078156,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.2543373107910156,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.017925484105944633,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.2831292152404785,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.017964687198400497,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.2785139083862305,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.01768588088452816,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.272413492202759,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.017593499273061752,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.2786943912506104,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.02263619564473629,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.2331840991973877,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.997504234313965,
+ "eval_runtime": 68.6017,
+ "eval_samples_per_second": 35.597,
+ "eval_steps_per_second": 1.122,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.018983691930770874,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.241229295730591,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.01769745722413063,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.244720220565796,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.01940307579934597,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.235339641571045,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.017714716494083405,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.2247347831726074,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.018448829650878906,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.270392656326294,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.017696617171168327,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.254031181335449,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.01945924013853073,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.253511905670166,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.01757945865392685,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.2771854400634766,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.018575280904769897,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.238738536834717,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.01795017346739769,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.270235538482666,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.01872493326663971,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.2378664016723633,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.01798509620130062,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.254434823989868,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.018167544156312943,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.250739574432373,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.01762092299759388,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.2840588092803955,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.01831229031085968,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.267660140991211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.01808358170092106,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.2154972553253174,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.017941338941454887,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.2377076148986816,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.01809528097510338,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.2710723876953125,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.01749086193740368,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.240135669708252,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.01763586327433586,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.2628841400146484,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.018280034884810448,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.2516636848449707,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.01793629862368107,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.285431385040283,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.01772841066122055,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.25602388381958,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.017574705183506012,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.245393753051758,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.017750296741724014,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.2361996173858643,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.01791345328092575,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.290215492248535,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.017766227945685387,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.257805585861206,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.01831849105656147,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.269528865814209,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.01814088225364685,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.261806011199951,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.01830805465579033,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.305274248123169,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.018372246995568275,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.263526678085327,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.01808883436024189,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.243898391723633,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.01745104044675827,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.2864532470703125,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.017856569960713387,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.21815824508667,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.01895907334983349,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.267364978790283,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.01753549836575985,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.2781548500061035,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.018666768446564674,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.225311756134033,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.018031692132353783,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.259636878967285,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.01837204024195671,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.301126003265381,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.01839369907975197,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.2295851707458496,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.018085381016135216,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.263286590576172,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.01798195205628872,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.283132791519165,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.018151475116610527,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.2986037731170654,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.017622441053390503,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.2850263118743896,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.01746201701462269,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.2642040252685547,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.017317142337560654,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.2261276245117188,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.01808793842792511,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.2630279064178467,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.017382370308041573,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.2685937881469727,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.01744145341217518,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.2540926933288574,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.017300108447670937,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.3077826499938965,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.017657684162259102,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.256051540374756,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.01778305135667324,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.2528152465820312,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.017506316304206848,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.274245262145996,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.01796594075858593,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.242635726928711,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.01722782291471958,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.2392749786376953,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.018115712329745293,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.2796077728271484,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.01787315122783184,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.2541041374206543,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.01759975031018257,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.312413215637207,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.017858082428574562,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.268305540084839,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.01754104346036911,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.2324278354644775,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.01789918914437294,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.279139995574951,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.017921460792422295,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.260338544845581,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.018311934545636177,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.279531955718994,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.01787002570927143,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.3422956466674805,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.018116366118192673,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.2641375064849854,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.01823844201862812,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.298542022705078,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.017788249999284744,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.273583173751831,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.017676375806331635,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.2824862003326416,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.017663495615124702,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.268880605697632,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.017920266836881638,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.28188157081604,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.017840363085269928,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.295778751373291,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.021651441231369972,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.2805123329162598,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.003090858459473,
+ "eval_runtime": 63.849,
+ "eval_samples_per_second": 38.246,
+ "eval_steps_per_second": 1.206,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.01956116035580635,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.2226920127868652,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.01807370036840439,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.2155508995056152,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.019413387402892113,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.2068796157836914,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.018032673746347427,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.23478364944458,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.01879831776022911,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.216125249862671,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.01816883310675621,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.291840076446533,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.01887478679418564,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.2400455474853516,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.01869991049170494,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.234286069869995,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.01881302334368229,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.2403011322021484,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.01813030056655407,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.2345221042633057,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.01873958483338356,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.269077777862549,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.01780061610043049,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.205399513244629,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.01844349317252636,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.191356658935547,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.01831045188009739,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.2332935333251953,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.017539450898766518,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.2783172130584717,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.01822333224117756,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.2451915740966797,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.017310652881860733,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.2773776054382324,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.017784686759114265,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.260366439819336,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.017756391316652298,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.2379889488220215,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.018218601122498512,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.2328624725341797,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.017498090863227844,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.2771708965301514,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.017671575769782066,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.2608582973480225,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.017075426876544952,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.2639667987823486,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.017231155186891556,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.2379541397094727,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.017439233139157295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.2063727378845215,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.01732606254518032,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.2259323596954346,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.017213711515069008,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.262057065963745,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.017605315893888474,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.2544336318969727,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.017422683537006378,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.2487425804138184,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.017587704584002495,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.270930290222168,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.017578281462192535,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.2582998275756836,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.017422989010810852,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.230900287628174,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.017262905836105347,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.260876178741455,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.01753116026520729,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.2794618606567383,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.017901718616485596,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.2977700233459473,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.01739160530269146,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.2062416076660156,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.017803272232413292,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.2721927165985107,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.01744180917739868,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.223621368408203,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.01748846098780632,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.2446537017822266,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.018154891207814217,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.2774620056152344,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.017660103738307953,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.256049156188965,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.017895042896270752,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.2390687465667725,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.01810084655880928,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.2590980529785156,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.01777142658829689,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.2521610260009766,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.017798084765672684,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.2923569679260254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.017959048971533775,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.2694578170776367,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.017739834263920784,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.276766777038574,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.017685972154140472,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.2840123176574707,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.017836326733231544,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.2199149131774902,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.01754208654165268,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.26906156539917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.01764521561563015,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.240112066268921,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.01754322275519371,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.2251625061035156,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.017735576257109642,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.2564854621887207,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.01783844828605652,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.3034374713897705,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.01781659945845604,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.2717790603637695,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.01788412407040596,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.253129720687866,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.01771196350455284,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.2762832641601562,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.017484815791249275,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.2821648120880127,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.017767874523997307,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.272578239440918,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.017588794231414795,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.2206339836120605,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.017551198601722717,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.260745048522949,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.0174455177038908,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.2688534259796143,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.017540588974952698,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.2458150386810303,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.017331562936306,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.2577664852142334,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.01767123118042946,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.2621970176696777,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.01742144301533699,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.2672641277313232,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.017617376521229744,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.2620532512664795,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.01754932478070259,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.2286524772644043,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.01754574291408062,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.2759151458740234,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.017384039238095284,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.2592954635620117,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.017610175535082817,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.2805817127227783,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.02227424643933773,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.2429699897766113,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.017529433593153954,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 3.244961977005005,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.017703555524349213,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 3.246979236602783,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.018033066764473915,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 3.21051287651062,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.017956966534256935,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 3.200293779373169,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.01785174570977688,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 3.255819320678711,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.017845869064331055,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 3.2381227016448975,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.017376607283949852,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 3.209688663482666,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.017835665494203568,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 3.2364702224731445,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.017631705850362778,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 3.2303967475891113,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.01760438270866871,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 3.2664668560028076,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.017505332827568054,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 3.2952675819396973,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.017497574910521507,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 3.232846736907959,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.0181044302880764,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 3.2061758041381836,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.017774557694792747,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 3.2076504230499268,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.017889510840177536,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 3.249056816101074,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.01745046302676201,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 3.189025402069092,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.018013279885053635,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 3.2340521812438965,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.017677349969744682,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 3.204529285430908,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.017726793885231018,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 3.2207562923431396,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.01777220144867897,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 3.257887840270996,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.017448291182518005,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 3.2266998291015625,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.01795802265405655,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 3.243046760559082,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.017767000943422318,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 3.2252984046936035,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.017598411068320274,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 3.2728867530822754,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.0175093375146389,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 3.2301716804504395,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.01752234622836113,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 3.2554984092712402,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.017380215227603912,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 3.2103607654571533,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.017711712047457695,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 3.227721691131592,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.01743495650589466,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 3.258934259414673,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.017517881467938423,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 3.2590456008911133,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.01759134978055954,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 3.2465591430664062,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.017467528581619263,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 3.2056009769439697,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.017469462007284164,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 3.260788679122925,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.017483681440353394,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 3.2763781547546387,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.01750316470861435,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 3.2057723999023438,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.01745068095624447,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 3.2306554317474365,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.017555013298988342,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 3.258639335632324,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.01749131642282009,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 3.2351009845733643,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.01748097501695156,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 3.2354822158813477,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.01745813898742199,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 3.262465000152588,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.017326191067695618,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 3.224465847015381,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.017351271584630013,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 3.2677080631256104,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.017157303169369698,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 3.188359022140503,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.017411384731531143,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 3.24735689163208,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.017491061240434647,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 3.249330520629883,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.017254192382097244,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 3.245887279510498,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.017440566793084145,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 3.2333600521087646,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.017463166266679764,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 3.2553508281707764,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.017299573868513107,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 3.2337400913238525,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.017604002729058266,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 3.2858872413635254,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.01726403273642063,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 3.227851390838623,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.01754872314631939,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 3.277681350708008,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.01720334216952324,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 3.234874963760376,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.017277004197239876,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 3.225287437438965,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.01748613454401493,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 3.258054256439209,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.017280500382184982,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 3.223569393157959,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.017574995756149292,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 3.2576966285705566,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.017353147268295288,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 3.2692956924438477,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.017138740047812462,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 3.2501301765441895,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.017247697338461876,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 3.215188503265381,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.017458025366067886,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 3.2622392177581787,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.017626900225877762,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 3.3074095249176025,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.017384719103574753,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 3.2575693130493164,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.018027596175670624,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 3.257897138595581,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.01786576583981514,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 3.261140823364258,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.0175836980342865,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 3.23909854888916,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.017651988193392754,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 3.229992389678955,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.017539171501994133,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 3.3183445930480957,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.017183566465973854,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 3.225883960723877,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.01837322674691677,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 3.2709217071533203,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.01733546145260334,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 3.2358856201171875,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.021558862179517746,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 3.2326605319976807,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.016476154327393,
+ "eval_runtime": 60.8751,
+ "eval_samples_per_second": 40.115,
+ "eval_steps_per_second": 1.265,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.018310755491256714,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 3.232618570327759,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.017700375989079475,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 3.2042884826660156,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.018466323614120483,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 3.2581820487976074,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.01803477294743061,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 3.213212490081787,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.018226031213998795,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 3.2348382472991943,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.017568888142704964,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 3.216085195541382,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.01825745217502117,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 3.2632150650024414,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.018053093925118446,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 3.1911230087280273,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.01748274639248848,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 3.173572063446045,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.01801222935318947,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 3.2377736568450928,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.017899058759212494,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 3.2143607139587402,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.017577150836586952,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 3.213991165161133,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.017483975738286972,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 3.1818995475769043,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.017731470987200737,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 3.1925432682037354,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.017530398443341255,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 3.2301573753356934,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.017736420035362244,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 3.2523295879364014,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.017762163653969765,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 3.2714390754699707,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.01757841370999813,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 3.224590301513672,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.017550919204950333,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 3.237952709197998,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.017783518880605698,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 3.2444963455200195,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.0177310798317194,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 3.1845245361328125,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.017549844458699226,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 3.2423999309539795,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.017969682812690735,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 3.2205543518066406,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.017357368022203445,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 3.247735023498535,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.017934780567884445,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 3.2423110008239746,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.017620455473661423,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 3.1820085048675537,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.01717233657836914,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 3.2278692722320557,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.017510665580630302,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 3.2136645317077637,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.017654601484537125,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 3.2125205993652344,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.01707565411925316,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 3.2393624782562256,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.017397494986653328,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 3.2494006156921387,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.017183862626552582,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 3.2070884704589844,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.01732145994901657,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 3.2487831115722656,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.017353307455778122,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 3.2498674392700195,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.017384063452482224,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 3.2471401691436768,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.017545688897371292,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 3.234022855758667,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.017262250185012817,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 3.205763339996338,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.01720436103641987,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 3.2519524097442627,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.017228005453944206,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 3.272043466567993,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.01735604740679264,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 3.2195615768432617,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.017384080216288567,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 3.2489025592803955,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.01752820611000061,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 3.239253520965576,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.01737368479371071,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 3.2232961654663086,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.01735164038836956,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 3.1779868602752686,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.01705678179860115,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 3.2185497283935547,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.017500247806310654,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 3.2413647174835205,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.017558136954903603,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 3.244550943374634,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.017196934670209885,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 3.286327838897705,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.017252638936042786,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 3.2400975227355957,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.017324181273579597,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 3.243863582611084,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.01771637238562107,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 3.2774100303649902,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.017239563167095184,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 3.2416157722473145,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.01733541674911976,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 3.2512667179107666,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.017296332865953445,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 3.2150471210479736,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.017267517745494843,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 3.214918613433838,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.017210787162184715,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 3.2482833862304688,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.01706908456981182,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 3.282301425933838,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.017387641593813896,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 3.2331676483154297,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.016940215602517128,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 3.2546334266662598,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.01763288490474224,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 3.2315475940704346,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.017375212162733078,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 3.2374236583709717,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.01716529205441475,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 3.227271556854248,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.017252633348107338,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 3.2300667762756348,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.01710720732808113,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 3.2416443824768066,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.0174605380743742,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 3.2148118019104004,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.01732385903596878,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 3.273786783218384,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.01699053682386875,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 3.2652063369750977,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.01730487309396267,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 3.246283769607544,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.01705090142786503,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 3.243262767791748,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.017367759719491005,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 3.2082772254943848,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.0174799095839262,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 3.241734504699707,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.022081606090068817,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 3.219550132751465,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.019675254821777,
+ "eval_runtime": 61.4928,
+ "eval_samples_per_second": 39.712,
+ "eval_steps_per_second": 1.252,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.017951447516679764,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 3.272630453109741,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.017625026404857635,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 3.220460891723633,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.01805288903415203,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 3.244718551635742,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.01773238182067871,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 3.1786532402038574,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.01714378595352173,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 3.1825239658355713,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.0173969566822052,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 3.210265636444092,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.017325550317764282,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 3.2094812393188477,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.017343346029520035,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 3.227940082550049,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.01761573739349842,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 3.218851089477539,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.017562439665198326,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 3.212418556213379,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.017642781138420105,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 3.1946425437927246,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.017536796629428864,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 3.2188472747802734,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.017488937824964523,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 3.204380750656128,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.01750698871910572,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 3.2152180671691895,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.017483115196228027,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 3.2022998332977295,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.017420953139662743,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 3.2242417335510254,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.017137344926595688,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 3.1949565410614014,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.017721502110362053,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 3.1778595447540283,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.01712454855442047,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 3.2012290954589844,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.017721572890877724,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 3.2224278450012207,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.017709681764245033,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 3.2433042526245117,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.017100242897868156,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 3.2306394577026367,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.01728358119726181,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 3.2183399200439453,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.017316747456789017,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 3.2228753566741943,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.017164191231131554,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 3.2133936882019043,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.017612354829907417,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 3.229147434234619,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.01733795367181301,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 3.245191812515259,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.016892043873667717,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 3.236952781677246,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.01710410788655281,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 3.2391958236694336,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.017562899738550186,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 3.2261290550231934,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.016781290993094444,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 3.181307077407837,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.017699383199214935,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 3.2229576110839844,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.017262829467654228,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 3.252142906188965,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.01712712273001671,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 3.197540283203125,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.0174831785261631,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 3.157918691635132,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.017448000609874725,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 3.2049789428710938,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.01748870126903057,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 3.20831298828125,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.01725795865058899,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 3.1872549057006836,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.01717992126941681,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 3.2387866973876953,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.017386529594659805,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 3.239051342010498,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.017065297812223434,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 3.2281854152679443,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.0171599593013525,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 3.2115731239318848,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.01698792353272438,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 3.2319893836975098,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.017729992046952248,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 3.2329702377319336,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.017458831891417503,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 3.25862455368042,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.017121950164437294,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 3.264134168624878,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.017869124189019203,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 3.20636248588562,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.017398614436388016,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 3.250251054763794,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.017080603167414665,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 3.2597837448120117,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.01719590090215206,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 3.2373785972595215,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.017263559624552727,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 3.2296595573425293,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.017032068222761154,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 3.2424325942993164,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.016956252977252007,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 3.258347749710083,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.017065994441509247,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 3.1995749473571777,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.017562363296747208,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 3.2442078590393066,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.017114480957388878,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 3.215576648712158,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.016992367804050446,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 3.2458670139312744,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.017189865931868553,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 3.2301650047302246,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.01753850281238556,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 3.2062699794769287,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.016889844089746475,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 3.190253734588623,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.017366012558341026,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 3.222769021987915,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.017080657184123993,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 3.2087855339050293,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.01711963303387165,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 3.248896598815918,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.017231037840247154,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 3.2431588172912598,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.01702718809247017,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 3.2148725986480713,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.01697443053126335,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 3.255077838897705,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.017075683921575546,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 3.2506020069122314,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.01679484359920025,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 3.215301513671875,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.017160305753350258,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 3.2272167205810547,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.017034923657774925,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 3.2316184043884277,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.016704535111784935,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 3.2383203506469727,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.02223137393593788,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 3.263951539993286,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.026858329772949,
+ "eval_runtime": 60.753,
+ "eval_samples_per_second": 40.196,
+ "eval_steps_per_second": 1.267,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.017439542338252068,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 3.1771702766418457,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.01753438636660576,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 3.209904432296753,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.017697060480713844,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 3.2294764518737793,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.01715891994535923,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 3.2155330181121826,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.01728959195315838,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 3.203341007232666,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.01722780428826809,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 3.210561513900757,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.016944313421845436,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 3.22910737991333,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.017543960362672806,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 3.1900830268859863,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.017831865698099136,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 3.1837193965911865,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.017087796702980995,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 3.2279911041259766,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.017442941665649414,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 3.1914994716644287,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.017455680295825005,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 3.2123308181762695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.017391972243785858,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 3.2378954887390137,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.017116675153374672,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 3.233334541320801,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.01776699163019657,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 3.211019992828369,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.01739395409822464,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 3.2502312660217285,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.01726681925356388,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 3.230407476425171,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.017171941697597504,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 3.2141127586364746,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.017044365406036377,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 3.225125789642334,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.017174016684293747,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 3.202070951461792,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.017485350370407104,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 3.202237129211426,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.017169756814837456,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 3.216709852218628,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.017259499058127403,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 3.173261880874634,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.017084889113903046,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 3.2197351455688477,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.017031218856573105,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 3.2273876667022705,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.017284328117966652,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 3.232072591781616,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.01718059554696083,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 3.2305593490600586,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.01696706935763359,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 3.1735150814056396,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.017100954428315163,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 3.2081236839294434,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.01694619655609131,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 3.2378270626068115,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.017226874828338623,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 3.2202634811401367,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.01715434342622757,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 3.2412049770355225,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.01709596998989582,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 3.182982921600342,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.017329160124063492,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 3.186955213546753,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.016967516392469406,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 3.206075429916382,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.017111945897340775,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 3.234576940536499,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.017229752615094185,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 3.212334156036377,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.01704096421599388,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 3.234598159790039,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.017327111214399338,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 3.2213339805603027,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.01670593023300171,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 3.2309489250183105,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.017125802114605904,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 3.2517027854919434,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.01689497008919716,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 3.1992850303649902,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.01713643968105316,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 3.23797345161438,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.01718931645154953,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 3.219618797302246,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.0170001108199358,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 3.202345371246338,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.01711791753768921,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 3.223907470703125,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.01681104488670826,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 3.22365665435791,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.017009908333420753,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 3.239800214767456,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.01700955256819725,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 3.214914321899414,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.01681571453809738,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 3.214987277984619,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.01694013550877571,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 3.199127674102783,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.016833258792757988,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 3.239985466003418,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.016871253028512,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 3.2004284858703613,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.01710224151611328,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 3.2227776050567627,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.016747068613767624,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 3.21055006980896,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.016907909885048866,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 3.251277446746826,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.016845090314745903,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 3.2400193214416504,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.016780439764261246,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 3.223231315612793,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.016963545233011246,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 3.2062413692474365,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.016802843660116196,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 3.220633029937744,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.016763046383857727,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 3.2220277786254883,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.016881363466382027,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 3.225633382797241,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.017177097499370575,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 3.2272353172302246,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.01688479259610176,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 3.195650339126587,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.01685161702334881,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 3.200880765914917,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.0172409825026989,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 3.1816346645355225,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.016851846128702164,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 3.156898021697998,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.01679978519678116,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 3.237438678741455,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.016678204759955406,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 3.2218270301818848,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.016977882012724876,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 3.2145681381225586,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.016928421333432198,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 3.218235492706299,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.021838227286934853,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 3.280247688293457,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.030216217041016,
+ "eval_runtime": 61.126,
+ "eval_samples_per_second": 39.95,
+ "eval_steps_per_second": 1.26,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.016846567392349243,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 3.193528890609741,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.016739314422011375,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 3.245321273803711,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.017252139747142792,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 3.1966240406036377,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.016994595527648926,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 3.230320453643799,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.016866911202669144,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 3.1676011085510254,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.01690635271370411,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 3.2191660404205322,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.016847623512148857,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 3.2128710746765137,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.01671850122511387,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 3.215355157852173,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.016795696690678596,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 3.2441227436065674,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.016780732199549675,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 3.2375288009643555,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.016913283616304398,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 3.219543218612671,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.017352351918816566,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 3.189596652984619,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.0167488195002079,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 3.206613063812256,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.01683894172310829,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 3.189150094985962,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.01718968339264393,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 3.2142493724823,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.016818132251501083,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 3.1623499393463135,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.016692742705345154,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 3.20845103263855,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.01686926931142807,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 3.248866319656372,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.016850603744387627,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 3.2048685550689697,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.01670694909989834,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 3.1928224563598633,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.016560612246394157,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 3.1911444664001465,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.01693088747560978,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 3.1940205097198486,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.017001640051603317,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 3.2179691791534424,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.016574621200561523,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 3.209895133972168,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.016912631690502167,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 3.200780153274536,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.01661100797355175,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 3.236159563064575,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.016951506957411766,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 3.2416586875915527,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.01690569892525673,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 3.1500091552734375,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.016770539805293083,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 3.1477084159851074,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.016958601772785187,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 3.217743158340454,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.017083117738366127,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 3.1841797828674316,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.016744980588555336,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 3.2035722732543945,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.016905121505260468,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 3.2369818687438965,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.01684725284576416,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 3.2269325256347656,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.01702183485031128,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 3.206357002258301,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.01680542156100273,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 3.2596511840820312,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.01694333367049694,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 3.2136905193328857,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.0169835165143013,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 3.2313132286071777,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.016826024278998375,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 3.2091591358184814,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.01672862283885479,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 3.208425760269165,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.016925055533647537,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 3.2123873233795166,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.016674473881721497,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 3.2232813835144043,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.017035890370607376,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 3.223219871520996,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.016546016559004784,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 3.1693038940429688,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.016941620036959648,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 3.191253662109375,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.01687287725508213,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 3.2603273391723633,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.01690494269132614,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 3.2228193283081055,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.01680070348083973,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 3.2282087802886963,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.016806989908218384,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 3.2047462463378906,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.016749607399106026,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 3.2269415855407715,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.016963236033916473,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 3.2035281658172607,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.016887513920664787,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 3.235266923904419,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.016995197162032127,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 3.2235960960388184,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.01688799262046814,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 3.2076051235198975,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.016756217926740646,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 3.2239019870758057,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.016736788675189018,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 3.203939914703369,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.016688963398337364,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 3.2348246574401855,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.016803188249468803,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 3.1978907585144043,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.016566172242164612,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 3.2203474044799805,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.016834227368235588,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 3.2009458541870117,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.017010822892189026,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 3.260282039642334,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.01688871718943119,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 3.177152633666992,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.016468720510601997,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 3.1891486644744873,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.016615666449069977,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 3.221515417098999,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.01685708574950695,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 3.2299835681915283,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.016747066751122475,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 3.2339115142822266,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.01657772623002529,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 3.1767711639404297,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.016621341928839684,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 3.185901165008545,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.01682469993829727,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 3.17289400100708,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.016663428395986557,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 3.171015977859497,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.01680401712656021,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 3.2434072494506836,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.021687129512429237,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 3.223989963531494,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 4.032544136047363,
+ "eval_runtime": 59.939,
+ "eval_samples_per_second": 40.741,
+ "eval_steps_per_second": 1.285,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397379912664,
+ "grad_norm": 0.01689537800848484,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 3.1999597549438477,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02794759825328,
+ "grad_norm": 0.016637451946735382,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 3.1869139671325684,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041921397379916,
+ "grad_norm": 0.016761161386966705,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 3.20565128326416,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05589519650655,
+ "grad_norm": 0.01691252551972866,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 3.198082208633423,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069868995633186,
+ "grad_norm": 0.01696748286485672,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 3.2014670372009277,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083842794759825,
+ "grad_norm": 0.0168568454682827,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 3.158719062805176,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09781659388646,
+ "grad_norm": 0.016927527263760567,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 3.1856513023376465,
+ "step": 3247
+ },
+ {
+ "epoch": 45.1117903930131,
+ "grad_norm": 0.016764067113399506,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 3.1750640869140625,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12576419213974,
+ "grad_norm": 0.016846204176545143,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 3.188767910003662,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13973799126637,
+ "grad_norm": 0.016708124428987503,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 3.2224292755126953,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15371179039301,
+ "grad_norm": 0.016847936436533928,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 3.1772255897521973,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16768558951965,
+ "grad_norm": 0.016726583242416382,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 3.1893727779388428,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18165938864629,
+ "grad_norm": 0.016790570691227913,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 3.1933817863464355,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19563318777293,
+ "grad_norm": 0.016682792454957962,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 3.2293431758880615,
+ "step": 3254
+ },
+ {
+ "epoch": 45.209606986899566,
+ "grad_norm": 0.016702529042959213,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 3.235382556915283,
+ "step": 3255
+ },
+ {
+ "epoch": 45.223580786026204,
+ "grad_norm": 0.016679124906659126,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 3.2596497535705566,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237554585152836,
+ "grad_norm": 0.016874054446816444,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 3.199338436126709,
+ "step": 3257
+ },
+ {
+ "epoch": 45.251528384279474,
+ "grad_norm": 0.01657354086637497,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 3.175001621246338,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26550218340611,
+ "grad_norm": 0.016669321805238724,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 3.2151119709014893,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27947598253275,
+ "grad_norm": 0.016666339710354805,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 3.1859524250030518,
+ "step": 3260
+ },
+ {
+ "epoch": 45.29344978165939,
+ "grad_norm": 0.016513310372829437,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 3.2300050258636475,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30742358078603,
+ "grad_norm": 0.01658441312611103,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 3.1967368125915527,
+ "step": 3262
+ },
+ {
+ "epoch": 45.32139737991266,
+ "grad_norm": 0.016569379717111588,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 3.222428321838379,
+ "step": 3263
+ },
+ {
+ "epoch": 45.3353711790393,
+ "grad_norm": 0.01679997704923153,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 3.2151875495910645,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34934497816594,
+ "grad_norm": 0.01652868464589119,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 3.2096173763275146,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36331877729258,
+ "grad_norm": 0.016729114577174187,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 3.2501602172851562,
+ "step": 3266
+ },
+ {
+ "epoch": 45.377292576419215,
+ "grad_norm": 0.016464432701468468,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 3.230882167816162,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391266375545854,
+ "grad_norm": 0.016662850975990295,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 3.1948976516723633,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40524017467249,
+ "grad_norm": 0.016617903485894203,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 3.174640655517578,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419213973799124,
+ "grad_norm": 0.016775747761130333,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 3.1826043128967285,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43318777292576,
+ "grad_norm": 0.01655293069779873,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 3.1880297660827637,
+ "step": 3271
+ },
+ {
+ "epoch": 45.4471615720524,
+ "grad_norm": 0.01680000312626362,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 3.2096385955810547,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46113537117904,
+ "grad_norm": 0.016876263543963432,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 3.2372570037841797,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47510917030568,
+ "grad_norm": 0.01672379858791828,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 3.1977591514587402,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48908296943232,
+ "grad_norm": 0.01661585085093975,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 3.1939094066619873,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50305676855895,
+ "grad_norm": 0.016688190400600433,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 3.1991348266601562,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51703056768559,
+ "grad_norm": 0.016601741313934326,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 3.2451395988464355,
+ "step": 3277
+ },
+ {
+ "epoch": 45.531004366812226,
+ "grad_norm": 0.01679171249270439,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 3.2144594192504883,
+ "step": 3278
+ },
+ {
+ "epoch": 45.544978165938865,
+ "grad_norm": 0.016553545370697975,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 3.1991286277770996,
+ "step": 3279
+ },
+ {
+ "epoch": 45.5589519650655,
+ "grad_norm": 0.016360219568014145,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 3.229745626449585,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57292576419214,
+ "grad_norm": 0.016741778701543808,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 3.212676525115967,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58689956331878,
+ "grad_norm": 0.0169652309268713,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 3.195507049560547,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60087336244541,
+ "grad_norm": 0.0165926031768322,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 3.1959433555603027,
+ "step": 3283
+ },
+ {
+ "epoch": 45.61484716157205,
+ "grad_norm": 0.016699813306331635,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 3.2258362770080566,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62882096069869,
+ "grad_norm": 0.016393767669796944,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 3.194078207015991,
+ "step": 3285
+ },
+ {
+ "epoch": 45.64279475982533,
+ "grad_norm": 0.01691497676074505,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 3.17856502532959,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65676855895197,
+ "grad_norm": 0.01660803146660328,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 3.187602996826172,
+ "step": 3287
+ },
+ {
+ "epoch": 45.670742358078606,
+ "grad_norm": 0.01664401777088642,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 3.218707323074341,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68471615720524,
+ "grad_norm": 0.016661517322063446,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 3.2106587886810303,
+ "step": 3289
+ },
+ {
+ "epoch": 45.698689956331876,
+ "grad_norm": 0.01681681163609028,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 3.2130775451660156,
+ "step": 3290
+ },
+ {
+ "epoch": 45.712663755458514,
+ "grad_norm": 0.01672780141234398,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 3.234966278076172,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72663755458515,
+ "grad_norm": 0.016537368297576904,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 3.1985950469970703,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74061135371179,
+ "grad_norm": 0.01658543385565281,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 3.19938325881958,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75458515283843,
+ "grad_norm": 0.01673876866698265,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 3.211984634399414,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76855895196506,
+ "grad_norm": 0.01705981232225895,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 3.161532402038574,
+ "step": 3295
+ },
+ {
+ "epoch": 45.7825327510917,
+ "grad_norm": 0.01650705747306347,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 3.2051219940185547,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79650655021834,
+ "grad_norm": 0.01657886989414692,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 3.178821563720703,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81048034934498,
+ "grad_norm": 0.016507504507899284,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 3.219991445541382,
+ "step": 3298
+ },
+ {
+ "epoch": 45.82445414847162,
+ "grad_norm": 0.016703292727470398,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 3.2249579429626465,
+ "step": 3299
+ },
+ {
+ "epoch": 45.838427947598255,
+ "grad_norm": 0.016615508124232292,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 3.173696756362915,
+ "step": 3300
+ },
+ {
+ "epoch": 45.852401746724894,
+ "grad_norm": 0.01654668338596821,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 3.211463451385498,
+ "step": 3301
+ },
+ {
+ "epoch": 45.866375545851525,
+ "grad_norm": 0.016640469431877136,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 3.2191224098205566,
+ "step": 3302
+ },
+ {
+ "epoch": 45.880349344978164,
+ "grad_norm": 0.01668590120971203,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 3.186791181564331,
+ "step": 3303
+ },
+ {
+ "epoch": 45.8943231441048,
+ "grad_norm": 0.01664852537214756,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 3.272718906402588,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90829694323144,
+ "grad_norm": 0.01670273393392563,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 3.1981072425842285,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92227074235808,
+ "grad_norm": 0.01670725829899311,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 3.226201057434082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93624454148472,
+ "grad_norm": 0.01640438847243786,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 3.1836156845092773,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95021834061135,
+ "grad_norm": 0.016554130241274834,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 3.178598403930664,
+ "step": 3308
+ },
+ {
+ "epoch": 45.96419213973799,
+ "grad_norm": 0.016509121283888817,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 3.274488925933838,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97816593886463,
+ "grad_norm": 0.01658967323601246,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 3.1949899196624756,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992139737991266,
+ "grad_norm": 0.016456667333841324,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 3.195187568664551,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.02209625020623207,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 3.21311616897583,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 4.035064220428467,
+ "eval_runtime": 65.2189,
+ "eval_samples_per_second": 37.443,
+ "eval_steps_per_second": 1.181,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397379912664,
+ "grad_norm": 0.016380207613110542,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 3.168389320373535,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02794759825328,
+ "grad_norm": 0.01650107465684414,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 3.204927921295166,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041921397379916,
+ "grad_norm": 0.016285032033920288,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 3.1848554611206055,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05589519650655,
+ "grad_norm": 0.016484957188367844,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 3.2032852172851562,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069868995633186,
+ "grad_norm": 0.016792936250567436,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 3.220832347869873,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083842794759825,
+ "grad_norm": 0.016638416796922684,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 3.2055158615112305,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09781659388646,
+ "grad_norm": 0.016352880746126175,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 3.208667755126953,
+ "step": 3319
+ },
+ {
+ "epoch": 46.1117903930131,
+ "grad_norm": 0.01651070825755596,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 3.1806440353393555,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12576419213974,
+ "grad_norm": 0.016741523519158363,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 3.1482768058776855,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13973799126637,
+ "grad_norm": 0.016523104161024094,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 3.2399420738220215,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15371179039301,
+ "grad_norm": 0.0165264792740345,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 3.213636875152588,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16768558951965,
+ "grad_norm": 0.01659003086388111,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 3.1897010803222656,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18165938864629,
+ "grad_norm": 0.016533227637410164,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 3.1861445903778076,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19563318777293,
+ "grad_norm": 0.01647718995809555,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 3.184234619140625,
+ "step": 3326
+ },
+ {
+ "epoch": 46.209606986899566,
+ "grad_norm": 0.01645752042531967,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 3.1875486373901367,
+ "step": 3327
+ },
+ {
+ "epoch": 46.223580786026204,
+ "grad_norm": 0.01655832678079605,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 3.2110962867736816,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237554585152836,
+ "grad_norm": 0.01690671779215336,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 3.2074999809265137,
+ "step": 3329
+ },
+ {
+ "epoch": 46.251528384279474,
+ "grad_norm": 0.01664036139845848,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 3.1964468955993652,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26550218340611,
+ "grad_norm": 0.016615455970168114,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 3.169482707977295,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27947598253275,
+ "grad_norm": 0.016332406550645828,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 3.19527530670166,
+ "step": 3332
+ },
+ {
+ "epoch": 46.29344978165939,
+ "grad_norm": 0.016610654070973396,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 3.207641124725342,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30742358078603,
+ "grad_norm": 0.01650235429406166,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 3.1660938262939453,
+ "step": 3334
+ },
+ {
+ "epoch": 46.32139737991266,
+ "grad_norm": 0.01650382950901985,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 3.2062413692474365,
+ "step": 3335
+ },
+ {
+ "epoch": 46.3353711790393,
+ "grad_norm": 0.016553329303860664,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 3.1736395359039307,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34934497816594,
+ "grad_norm": 0.016553837805986404,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 3.20888614654541,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36331877729258,
+ "grad_norm": 0.01675983890891075,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 3.2195186614990234,
+ "step": 3338
+ },
+ {
+ "epoch": 46.377292576419215,
+ "grad_norm": 0.016506677493453026,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 3.2152862548828125,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391266375545854,
+ "grad_norm": 0.016473686322569847,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 3.220611095428467,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40524017467249,
+ "grad_norm": 0.016688337549567223,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 3.2095210552215576,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419213973799124,
+ "grad_norm": 0.016333185136318207,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 3.1949610710144043,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43318777292576,
+ "grad_norm": 0.016522210091352463,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 3.2038111686706543,
+ "step": 3343
+ },
+ {
+ "epoch": 46.4471615720524,
+ "grad_norm": 0.016540462151169777,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 3.161588191986084,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46113537117904,
+ "grad_norm": 0.016502145677804947,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 3.190678596496582,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47510917030568,
+ "grad_norm": 0.016423432156443596,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 3.20601224899292,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48908296943232,
+ "grad_norm": 0.016551237553358078,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 3.2188868522644043,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50305676855895,
+ "grad_norm": 0.01650925725698471,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 3.1974682807922363,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51703056768559,
+ "grad_norm": 0.01656721532344818,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 3.2058396339416504,
+ "step": 3349
+ },
+ {
+ "epoch": 46.531004366812226,
+ "grad_norm": 0.016365155577659607,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 3.2008473873138428,
+ "step": 3350
+ },
+ {
+ "epoch": 46.544978165938865,
+ "grad_norm": 0.016517145559191704,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 3.1761903762817383,
+ "step": 3351
+ },
+ {
+ "epoch": 46.5589519650655,
+ "grad_norm": 0.016573725268244743,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 3.214900016784668,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57292576419214,
+ "grad_norm": 0.01654760353267193,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 3.180239677429199,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58689956331878,
+ "grad_norm": 0.01638307236135006,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 3.2135674953460693,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60087336244541,
+ "grad_norm": 0.01664786785840988,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 3.209251880645752,
+ "step": 3355
+ },
+ {
+ "epoch": 46.61484716157205,
+ "grad_norm": 0.01669866032898426,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 3.1778972148895264,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62882096069869,
+ "grad_norm": 0.01659618318080902,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 3.2010273933410645,
+ "step": 3357
+ },
+ {
+ "epoch": 46.64279475982533,
+ "grad_norm": 0.016566501930356026,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 3.196701765060425,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65676855895197,
+ "grad_norm": 0.01649053394794464,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 3.2155814170837402,
+ "step": 3359
+ },
+ {
+ "epoch": 46.670742358078606,
+ "grad_norm": 0.01667562872171402,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 3.1926331520080566,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68471615720524,
+ "grad_norm": 0.016565900295972824,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 3.1821649074554443,
+ "step": 3361
+ },
+ {
+ "epoch": 46.698689956331876,
+ "grad_norm": 0.01645723171532154,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 3.202113389968872,
+ "step": 3362
+ },
+ {
+ "epoch": 46.712663755458514,
+ "grad_norm": 0.016400756314396858,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 3.226752281188965,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72663755458515,
+ "grad_norm": 0.01637621782720089,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 3.2025418281555176,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74061135371179,
+ "grad_norm": 0.01659555733203888,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 3.234776496887207,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75458515283843,
+ "grad_norm": 0.016504235565662384,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 3.206996440887451,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76855895196506,
+ "grad_norm": 0.01649826392531395,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 3.191608428955078,
+ "step": 3367
+ },
+ {
+ "epoch": 46.7825327510917,
+ "grad_norm": 0.0165094081312418,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 3.196244955062866,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79650655021834,
+ "grad_norm": 0.016534121707081795,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 3.17790150642395,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81048034934498,
+ "grad_norm": 0.01663818769156933,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 3.2025370597839355,
+ "step": 3370
+ },
+ {
+ "epoch": 46.82445414847162,
+ "grad_norm": 0.016552481800317764,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 3.1916775703430176,
+ "step": 3371
+ },
+ {
+ "epoch": 46.838427947598255,
+ "grad_norm": 0.01649044081568718,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 3.2046825885772705,
+ "step": 3372
+ },
+ {
+ "epoch": 46.852401746724894,
+ "grad_norm": 0.016438577324151993,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 3.179168939590454,
+ "step": 3373
+ },
+ {
+ "epoch": 46.866375545851525,
+ "grad_norm": 0.01639910601079464,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 3.189319610595703,
+ "step": 3374
+ },
+ {
+ "epoch": 46.880349344978164,
+ "grad_norm": 0.01663138158619404,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 3.2161130905151367,
+ "step": 3375
+ },
+ {
+ "epoch": 46.8943231441048,
+ "grad_norm": 0.01665831170976162,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 3.201854705810547,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90829694323144,
+ "grad_norm": 0.016569754108786583,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 3.213168144226074,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92227074235808,
+ "grad_norm": 0.01646677404642105,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 3.226667881011963,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93624454148472,
+ "grad_norm": 0.016532260924577713,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 3.2034385204315186,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95021834061135,
+ "grad_norm": 0.01666882075369358,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 3.2531251907348633,
+ "step": 3380
+ },
+ {
+ "epoch": 46.96419213973799,
+ "grad_norm": 0.016589008271694183,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 3.2577037811279297,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97816593886463,
+ "grad_norm": 0.016636785119771957,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 3.196950912475586,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992139737991266,
+ "grad_norm": 0.016439856961369514,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 3.2351131439208984,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.021839981898665428,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 3.2309093475341797,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 4.038247585296631,
+ "eval_runtime": 61.7851,
+ "eval_samples_per_second": 39.524,
+ "eval_steps_per_second": 1.246,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397379912664,
+ "grad_norm": 0.016431283205747604,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 3.181135654449463,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02794759825328,
+ "grad_norm": 0.01647196151316166,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 3.180485486984253,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041921397379916,
+ "grad_norm": 0.016259314492344856,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 3.1778788566589355,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05589519650655,
+ "grad_norm": 0.01641720160841942,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 3.1744611263275146,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069868995633186,
+ "grad_norm": 0.01638304814696312,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 3.2021102905273438,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083842794759825,
+ "grad_norm": 0.016426432877779007,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 3.1944339275360107,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09781659388646,
+ "grad_norm": 0.016548285260796547,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 3.2147719860076904,
+ "step": 3391
+ },
+ {
+ "epoch": 47.1117903930131,
+ "grad_norm": 0.016261333599686623,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 3.175905704498291,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12576419213974,
+ "grad_norm": 0.016499828547239304,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 3.170753240585327,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13973799126637,
+ "grad_norm": 0.01655607298016548,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 3.217719793319702,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15371179039301,
+ "grad_norm": 0.016339944675564766,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 3.2111093997955322,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16768558951965,
+ "grad_norm": 0.016500836238265038,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 3.183361530303955,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18165938864629,
+ "grad_norm": 0.01642506569623947,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 3.212322235107422,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19563318777293,
+ "grad_norm": 0.016524486243724823,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 3.1950111389160156,
+ "step": 3398
+ },
+ {
+ "epoch": 47.209606986899566,
+ "grad_norm": 0.016440661624073982,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 3.203057289123535,
+ "step": 3399
+ },
+ {
+ "epoch": 47.223580786026204,
+ "grad_norm": 0.016404153779149055,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 3.1943182945251465,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237554585152836,
+ "grad_norm": 0.01661873236298561,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 3.227384090423584,
+ "step": 3401
+ },
+ {
+ "epoch": 47.251528384279474,
+ "grad_norm": 0.016410283744335175,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 3.2217936515808105,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26550218340611,
+ "grad_norm": 0.016708534210920334,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 3.213529109954834,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27947598253275,
+ "grad_norm": 0.01635541208088398,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 3.1923580169677734,
+ "step": 3404
+ },
+ {
+ "epoch": 47.29344978165939,
+ "grad_norm": 0.016444962471723557,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 3.2124907970428467,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30742358078603,
+ "grad_norm": 0.016526034101843834,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 3.1912264823913574,
+ "step": 3406
+ },
+ {
+ "epoch": 47.32139737991266,
+ "grad_norm": 0.01666390337049961,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 3.2096190452575684,
+ "step": 3407
+ },
+ {
+ "epoch": 47.3353711790393,
+ "grad_norm": 0.01648072898387909,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 3.1910805702209473,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34934497816594,
+ "grad_norm": 0.016248274594545364,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 3.2207584381103516,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36331877729258,
+ "grad_norm": 0.01652693562209606,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 3.184279680252075,
+ "step": 3410
+ },
+ {
+ "epoch": 47.377292576419215,
+ "grad_norm": 0.016594182699918747,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 3.1915907859802246,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391266375545854,
+ "grad_norm": 0.01641947776079178,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 3.2047512531280518,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40524017467249,
+ "grad_norm": 0.016263913363218307,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 3.184407949447632,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419213973799124,
+ "grad_norm": 0.016438355669379234,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 3.24165415763855,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43318777292576,
+ "grad_norm": 0.01645088940858841,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 3.217560291290283,
+ "step": 3415
+ },
+ {
+ "epoch": 47.4471615720524,
+ "grad_norm": 0.01646856963634491,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 3.2103970050811768,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46113537117904,
+ "grad_norm": 0.01634460687637329,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 3.215031385421753,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47510917030568,
+ "grad_norm": 0.01646578311920166,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 3.178680181503296,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48908296943232,
+ "grad_norm": 0.016422947868704796,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 3.185100555419922,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50305676855895,
+ "grad_norm": 0.016217269003391266,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 3.1903696060180664,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51703056768559,
+ "grad_norm": 0.01655973307788372,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 3.1562304496765137,
+ "step": 3421
+ },
+ {
+ "epoch": 47.531004366812226,
+ "grad_norm": 0.01648912951350212,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 3.2209625244140625,
+ "step": 3422
+ },
+ {
+ "epoch": 47.544978165938865,
+ "grad_norm": 0.016284218057990074,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 3.240255355834961,
+ "step": 3423
+ },
+ {
+ "epoch": 47.5589519650655,
+ "grad_norm": 0.01638045907020569,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 3.206300735473633,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57292576419214,
+ "grad_norm": 0.01635533757507801,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 3.2187342643737793,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58689956331878,
+ "grad_norm": 0.016475120559334755,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 3.2228121757507324,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60087336244541,
+ "grad_norm": 0.016526564955711365,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 3.2118563652038574,
+ "step": 3427
+ },
+ {
+ "epoch": 47.61484716157205,
+ "grad_norm": 0.016462545841932297,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 3.2180492877960205,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62882096069869,
+ "grad_norm": 0.016359815374016762,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 3.2032101154327393,
+ "step": 3429
+ },
+ {
+ "epoch": 47.64279475982533,
+ "grad_norm": 0.016317687928676605,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 3.222827196121216,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65676855895197,
+ "grad_norm": 0.016416743397712708,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 3.2147746086120605,
+ "step": 3431
+ },
+ {
+ "epoch": 47.670742358078606,
+ "grad_norm": 0.01641950197517872,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 3.1772353649139404,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68471615720524,
+ "grad_norm": 0.016344895586371422,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 3.198826551437378,
+ "step": 3433
+ },
+ {
+ "epoch": 47.698689956331876,
+ "grad_norm": 0.016383744776248932,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 3.198504686355591,
+ "step": 3434
+ },
+ {
+ "epoch": 47.712663755458514,
+ "grad_norm": 0.016491606831550598,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 3.197158098220825,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72663755458515,
+ "grad_norm": 0.016493815928697586,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 3.198395252227783,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74061135371179,
+ "grad_norm": 0.016441142186522484,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 3.153325319290161,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75458515283843,
+ "grad_norm": 0.01653742603957653,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 3.1651408672332764,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76855895196506,
+ "grad_norm": 0.016491904854774475,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 3.1869382858276367,
+ "step": 3439
+ },
+ {
+ "epoch": 47.7825327510917,
+ "grad_norm": 0.016472244635224342,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 3.1971006393432617,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79650655021834,
+ "grad_norm": 0.016223065555095673,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 3.1746883392333984,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81048034934498,
+ "grad_norm": 0.016400789842009544,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 3.1821274757385254,
+ "step": 3442
+ },
+ {
+ "epoch": 47.82445414847162,
+ "grad_norm": 0.01642857864499092,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 3.182657241821289,
+ "step": 3443
+ },
+ {
+ "epoch": 47.838427947598255,
+ "grad_norm": 0.016393743455410004,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 3.216165542602539,
+ "step": 3444
+ },
+ {
+ "epoch": 47.852401746724894,
+ "grad_norm": 0.016516098752617836,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 3.2184805870056152,
+ "step": 3445
+ },
+ {
+ "epoch": 47.866375545851525,
+ "grad_norm": 0.016391437500715256,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 3.181209087371826,
+ "step": 3446
+ },
+ {
+ "epoch": 47.880349344978164,
+ "grad_norm": 0.016537275165319443,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 3.2115464210510254,
+ "step": 3447
+ },
+ {
+ "epoch": 47.8943231441048,
+ "grad_norm": 0.01620519533753395,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 3.1626179218292236,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90829694323144,
+ "grad_norm": 0.016371585428714752,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 3.211726188659668,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92227074235808,
+ "grad_norm": 0.016322273761034012,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 3.1928768157958984,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93624454148472,
+ "grad_norm": 0.01630214974284172,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 3.1855173110961914,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95021834061135,
+ "grad_norm": 0.01639699749648571,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 3.206594228744507,
+ "step": 3452
+ },
+ {
+ "epoch": 47.96419213973799,
+ "grad_norm": 0.016337396577000618,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 3.225511074066162,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97816593886463,
+ "grad_norm": 0.016418375074863434,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 3.1659767627716064,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992139737991266,
+ "grad_norm": 0.01643899269402027,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 3.2028543949127197,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.021270645782351494,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 3.1940407752990723,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 4.039460182189941,
+ "eval_runtime": 61.1507,
+ "eval_samples_per_second": 39.934,
+ "eval_steps_per_second": 1.259,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397379912664,
+ "grad_norm": 0.016352122649550438,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 3.1409354209899902,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02794759825328,
+ "grad_norm": 0.016342412680387497,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 3.190180778503418,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041921397379916,
+ "grad_norm": 0.016300460323691368,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 3.2060065269470215,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05589519650655,
+ "grad_norm": 0.016346363350749016,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 3.215381622314453,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069868995633186,
+ "grad_norm": 0.01636652834713459,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 3.216311454772949,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083842794759825,
+ "grad_norm": 0.016394175589084625,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 3.1919562816619873,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09781659388646,
+ "grad_norm": 0.016279270872473717,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 3.188156843185425,
+ "step": 3463
+ },
+ {
+ "epoch": 48.1117903930131,
+ "grad_norm": 0.016355130821466446,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 3.174669027328491,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12576419213974,
+ "grad_norm": 0.016210269182920456,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 3.184347152709961,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13973799126637,
+ "grad_norm": 0.01619681715965271,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 3.2351131439208984,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15371179039301,
+ "grad_norm": 0.01638413965702057,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 3.2055325508117676,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16768558951965,
+ "grad_norm": 0.01633879728615284,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 3.206345319747925,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18165938864629,
+ "grad_norm": 0.016393480822443962,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 3.201732635498047,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19563318777293,
+ "grad_norm": 0.016406182199716568,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 3.2393875122070312,
+ "step": 3470
+ },
+ {
+ "epoch": 48.209606986899566,
+ "grad_norm": 0.01654369756579399,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 3.200958490371704,
+ "step": 3471
+ },
+ {
+ "epoch": 48.223580786026204,
+ "grad_norm": 0.016367780044674873,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 3.223097085952759,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237554585152836,
+ "grad_norm": 0.016307154670357704,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 3.2097713947296143,
+ "step": 3473
+ },
+ {
+ "epoch": 48.251528384279474,
+ "grad_norm": 0.0164618119597435,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 3.187659740447998,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26550218340611,
+ "grad_norm": 0.016385745257139206,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 3.1861181259155273,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27947598253275,
+ "grad_norm": 0.016456089913845062,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 3.222097396850586,
+ "step": 3476
+ },
+ {
+ "epoch": 48.29344978165939,
+ "grad_norm": 0.01649918407201767,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 3.2046356201171875,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30742358078603,
+ "grad_norm": 0.016377151012420654,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 3.168635606765747,
+ "step": 3478
+ },
+ {
+ "epoch": 48.32139737991266,
+ "grad_norm": 0.016366522759199142,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 3.165071964263916,
+ "step": 3479
+ },
+ {
+ "epoch": 48.3353711790393,
+ "grad_norm": 0.016320187598466873,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 3.1798038482666016,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34934497816594,
+ "grad_norm": 0.016404561698436737,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 3.1932601928710938,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36331877729258,
+ "grad_norm": 0.016530951485037804,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 3.184046745300293,
+ "step": 3482
+ },
+ {
+ "epoch": 48.377292576419215,
+ "grad_norm": 0.016543501988053322,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 3.162477970123291,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391266375545854,
+ "grad_norm": 0.01640291139483452,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 3.16195011138916,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40524017467249,
+ "grad_norm": 0.016420526430010796,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 3.2196357250213623,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419213973799124,
+ "grad_norm": 0.016321346163749695,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 3.198908805847168,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43318777292576,
+ "grad_norm": 0.016243362799286842,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 3.1890480518341064,
+ "step": 3487
+ },
+ {
+ "epoch": 48.4471615720524,
+ "grad_norm": 0.0164671428501606,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 3.1944096088409424,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46113537117904,
+ "grad_norm": 0.016260528936982155,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 3.2024030685424805,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47510917030568,
+ "grad_norm": 0.01639903523027897,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 3.2184290885925293,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48908296943232,
+ "grad_norm": 0.016265835613012314,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 3.1578800678253174,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50305676855895,
+ "grad_norm": 0.016279559582471848,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 3.241434097290039,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51703056768559,
+ "grad_norm": 0.01629609428346157,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 3.2293472290039062,
+ "step": 3493
+ },
+ {
+ "epoch": 48.531004366812226,
+ "grad_norm": 0.01638948544859886,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 3.1837821006774902,
+ "step": 3494
+ },
+ {
+ "epoch": 48.544978165938865,
+ "grad_norm": 0.016553163528442383,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 3.214552402496338,
+ "step": 3495
+ },
+ {
+ "epoch": 48.5589519650655,
+ "grad_norm": 0.016248604282736778,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 3.187656879425049,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57292576419214,
+ "grad_norm": 0.016203241422772408,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 3.2057065963745117,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58689956331878,
+ "grad_norm": 0.016268782317638397,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 3.188279628753662,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60087336244541,
+ "grad_norm": 0.016380658373236656,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 3.165933132171631,
+ "step": 3499
+ },
+ {
+ "epoch": 48.61484716157205,
+ "grad_norm": 0.016264570876955986,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 3.1829581260681152,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62882096069869,
+ "grad_norm": 0.01609072834253311,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 3.160534381866455,
+ "step": 3501
+ },
+ {
+ "epoch": 48.64279475982533,
+ "grad_norm": 0.016297506168484688,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 3.226635694503784,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65676855895197,
+ "grad_norm": 0.016344990581274033,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 3.184839963912964,
+ "step": 3503
+ },
+ {
+ "epoch": 48.670742358078606,
+ "grad_norm": 0.016328714787960052,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 3.208111524581909,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68471615720524,
+ "grad_norm": 0.01613297127187252,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 3.186739444732666,
+ "step": 3505
+ },
+ {
+ "epoch": 48.698689956331876,
+ "grad_norm": 0.016423285007476807,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 3.2003512382507324,
+ "step": 3506
+ },
+ {
+ "epoch": 48.712663755458514,
+ "grad_norm": 0.01636313647031784,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 3.202773094177246,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72663755458515,
+ "grad_norm": 0.016202369704842567,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 3.193998098373413,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74061135371179,
+ "grad_norm": 0.016402898356318474,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 3.2374041080474854,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75458515283843,
+ "grad_norm": 0.016307884827256203,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 3.218799114227295,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76855895196506,
+ "grad_norm": 0.016329796984791756,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 3.182651996612549,
+ "step": 3511
+ },
+ {
+ "epoch": 48.7825327510917,
+ "grad_norm": 0.01639932207763195,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 3.1741089820861816,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79650655021834,
+ "grad_norm": 0.016239382326602936,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 3.199528932571411,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81048034934498,
+ "grad_norm": 0.016435179859399796,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 3.208038806915283,
+ "step": 3514
+ },
+ {
+ "epoch": 48.82445414847162,
+ "grad_norm": 0.01640409603714943,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 3.173722982406616,
+ "step": 3515
+ },
+ {
+ "epoch": 48.838427947598255,
+ "grad_norm": 0.016402006149291992,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 3.2158524990081787,
+ "step": 3516
+ },
+ {
+ "epoch": 48.852401746724894,
+ "grad_norm": 0.016292909160256386,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 3.2084691524505615,
+ "step": 3517
+ },
+ {
+ "epoch": 48.866375545851525,
+ "grad_norm": 0.016647648066282272,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 3.190441131591797,
+ "step": 3518
+ },
+ {
+ "epoch": 48.880349344978164,
+ "grad_norm": 0.01642356626689434,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 3.211838722229004,
+ "step": 3519
+ },
+ {
+ "epoch": 48.8943231441048,
+ "grad_norm": 0.016271432861685753,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 3.164454936981201,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90829694323144,
+ "grad_norm": 0.016440993174910545,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 3.221832752227783,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92227074235808,
+ "grad_norm": 0.016300838440656662,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 3.197032928466797,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93624454148472,
+ "grad_norm": 0.016508642584085464,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 3.18882417678833,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95021834061135,
+ "grad_norm": 0.01636030711233616,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 3.1706790924072266,
+ "step": 3524
+ },
+ {
+ "epoch": 48.96419213973799,
+ "grad_norm": 0.016347121447324753,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 3.1831698417663574,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97816593886463,
+ "grad_norm": 0.016322162002325058,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 3.2105770111083984,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992139737991266,
+ "grad_norm": 0.01639482006430626,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 3.180579900741577,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.022035259753465652,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 3.2062106132507324,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 4.040928363800049,
+ "eval_runtime": 61.2948,
+ "eval_samples_per_second": 39.84,
+ "eval_steps_per_second": 1.256,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397379912664,
+ "grad_norm": 0.016315679997205734,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 3.2213616371154785,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02794759825328,
+ "grad_norm": 0.016308721154928207,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 3.1670026779174805,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041921397379916,
+ "grad_norm": 0.016306977719068527,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 3.209770917892456,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05589519650655,
+ "grad_norm": 0.016640936955809593,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 3.1846704483032227,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069868995633186,
+ "grad_norm": 0.01644529029726982,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 3.2062370777130127,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083842794759825,
+ "grad_norm": 0.016458217054605484,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 3.2074761390686035,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09781659388646,
+ "grad_norm": 0.016287118196487427,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 3.1874613761901855,
+ "step": 3535
+ },
+ {
+ "epoch": 49.1117903930131,
+ "grad_norm": 0.016292374581098557,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 3.222200870513916,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12576419213974,
+ "grad_norm": 0.016498245298862457,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 3.2287955284118652,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13973799126637,
+ "grad_norm": 0.016271056607365608,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 3.1976237297058105,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15371179039301,
+ "grad_norm": 0.01639769785106182,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 3.2140347957611084,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16768558951965,
+ "grad_norm": 0.016381243243813515,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 3.1606297492980957,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18165938864629,
+ "grad_norm": 0.016341667622327805,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 3.1606454849243164,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19563318777293,
+ "grad_norm": 0.01632755436003208,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 3.231013298034668,
+ "step": 3542
+ },
+ {
+ "epoch": 49.209606986899566,
+ "grad_norm": 0.016375144943594933,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 3.2240447998046875,
+ "step": 3543
+ },
+ {
+ "epoch": 49.223580786026204,
+ "grad_norm": 0.016319308429956436,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 3.2114696502685547,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237554585152836,
+ "grad_norm": 0.01625453121960163,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 3.1739351749420166,
+ "step": 3545
+ },
+ {
+ "epoch": 49.251528384279474,
+ "grad_norm": 0.016296960413455963,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 3.1866912841796875,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26550218340611,
+ "grad_norm": 0.016364095732569695,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 3.214439868927002,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27947598253275,
+ "grad_norm": 0.016516275703907013,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 3.186150550842285,
+ "step": 3548
+ },
+ {
+ "epoch": 49.29344978165939,
+ "grad_norm": 0.01628078892827034,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 3.1834912300109863,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30742358078603,
+ "grad_norm": 0.016206782311201096,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 3.1735434532165527,
+ "step": 3550
+ },
+ {
+ "epoch": 49.32139737991266,
+ "grad_norm": 0.01624573953449726,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 3.1827173233032227,
+ "step": 3551
+ },
+ {
+ "epoch": 49.3353711790393,
+ "grad_norm": 0.016315508633852005,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 3.1645781993865967,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34934497816594,
+ "grad_norm": 0.016332067549228668,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 3.170902967453003,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36331877729258,
+ "grad_norm": 0.016249101608991623,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 3.1907639503479004,
+ "step": 3554
+ },
+ {
+ "epoch": 49.377292576419215,
+ "grad_norm": 0.016374913975596428,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 3.1723551750183105,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391266375545854,
+ "grad_norm": 0.01631934940814972,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 3.208820104598999,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40524017467249,
+ "grad_norm": 0.0162766445428133,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 3.236572742462158,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419213973799124,
+ "grad_norm": 0.01618507131934166,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 3.149202585220337,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43318777292576,
+ "grad_norm": 0.016386153176426888,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 3.202699661254883,
+ "step": 3559
+ },
+ {
+ "epoch": 49.4471615720524,
+ "grad_norm": 0.016445470973849297,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 3.2113101482391357,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46113537117904,
+ "grad_norm": 0.016208620741963387,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 3.2041516304016113,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47510917030568,
+ "grad_norm": 0.016241520643234253,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 3.1947288513183594,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48908296943232,
+ "grad_norm": 0.016155365854501724,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 3.171420097351074,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50305676855895,
+ "grad_norm": 0.01624019630253315,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 3.1997809410095215,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51703056768559,
+ "grad_norm": 0.01641981117427349,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 3.182986259460449,
+ "step": 3565
+ },
+ {
+ "epoch": 49.531004366812226,
+ "grad_norm": 0.01627649925649166,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 3.1876096725463867,
+ "step": 3566
+ },
+ {
+ "epoch": 49.544978165938865,
+ "grad_norm": 0.01641320437192917,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 3.2016568183898926,
+ "step": 3567
+ },
+ {
+ "epoch": 49.5589519650655,
+ "grad_norm": 0.016311850398778915,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 3.1948704719543457,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57292576419214,
+ "grad_norm": 0.016453692689538002,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 3.18235445022583,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58689956331878,
+ "grad_norm": 0.016511475667357445,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 3.161130905151367,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60087336244541,
+ "grad_norm": 0.016276061534881592,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 3.1712300777435303,
+ "step": 3571
+ },
+ {
+ "epoch": 49.61484716157205,
+ "grad_norm": 0.01628466509282589,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 3.21868896484375,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62882096069869,
+ "grad_norm": 0.016307493671774864,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 3.189724922180176,
+ "step": 3573
+ },
+ {
+ "epoch": 49.64279475982533,
+ "grad_norm": 0.01655402220785618,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 3.1915907859802246,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65676855895197,
+ "grad_norm": 0.01642538793385029,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 3.183321714401245,
+ "step": 3575
+ },
+ {
+ "epoch": 49.670742358078606,
+ "grad_norm": 0.01637006737291813,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 3.2038512229919434,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68471615720524,
+ "grad_norm": 0.016323819756507874,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 3.1808207035064697,
+ "step": 3577
+ },
+ {
+ "epoch": 49.698689956331876,
+ "grad_norm": 0.016368405893445015,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 3.2077767848968506,
+ "step": 3578
+ },
+ {
+ "epoch": 49.712663755458514,
+ "grad_norm": 0.01633196882903576,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 3.2042393684387207,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72663755458515,
+ "grad_norm": 0.016297468915581703,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 3.2206411361694336,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74061135371179,
+ "grad_norm": 0.01623954251408577,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 3.217240810394287,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75458515283843,
+ "grad_norm": 0.0162919070571661,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 3.1721739768981934,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76855895196506,
+ "grad_norm": 0.016283929347991943,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 3.1821320056915283,
+ "step": 3583
+ },
+ {
+ "epoch": 49.7825327510917,
+ "grad_norm": 0.01625969260931015,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 3.1815667152404785,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79650655021834,
+ "grad_norm": 0.01626112498342991,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 3.2329466342926025,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81048034934498,
+ "grad_norm": 0.016144150868058205,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 3.2043213844299316,
+ "step": 3586
+ },
+ {
+ "epoch": 49.82445414847162,
+ "grad_norm": 0.016232941299676895,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 3.167363166809082,
+ "step": 3587
+ },
+ {
+ "epoch": 49.838427947598255,
+ "grad_norm": 0.016172634437680244,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 3.207252025604248,
+ "step": 3588
+ },
+ {
+ "epoch": 49.852401746724894,
+ "grad_norm": 0.016292739659547806,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 3.2349092960357666,
+ "step": 3589
+ },
+ {
+ "epoch": 49.866375545851525,
+ "grad_norm": 0.016362767666578293,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 3.1951024532318115,
+ "step": 3590
+ },
+ {
+ "epoch": 49.880349344978164,
+ "grad_norm": 0.016165446490049362,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 3.2163314819335938,
+ "step": 3591
+ },
+ {
+ "epoch": 49.8943231441048,
+ "grad_norm": 0.016309110447764397,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 3.1800756454467773,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90829694323144,
+ "grad_norm": 0.016270631924271584,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 3.170565605163574,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92227074235808,
+ "grad_norm": 0.016463661566376686,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 3.2113447189331055,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93624454148472,
+ "grad_norm": 0.01620331034064293,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 3.200878620147705,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95021834061135,
+ "grad_norm": 0.01633439026772976,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 3.192624568939209,
+ "step": 3596
+ },
+ {
+ "epoch": 49.96419213973799,
+ "grad_norm": 0.016272149980068207,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 3.183785915374756,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97816593886463,
+ "grad_norm": 0.016210386529564857,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 3.1811389923095703,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992139737991266,
+ "grad_norm": 0.01635911501944065,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 3.187089681625366,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.021503709256649017,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 3.23524808883667,
+ "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/l2r50-baseline/checkpoint-3600/training_args.bin b/runs/l2r50-baseline/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-72/chat_template.jinja b/runs/l2r50-baseline/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/config.json b/runs/l2r50-baseline/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/generation_config.json b/runs/l2r50-baseline/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/model.safetensors b/runs/l2r50-baseline/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..cb3a023911427952aed37ab6a3b35af7288e3cd3
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de3a97d7695759aa78aa00a562dd9e8889509388cb70d034324555155bb8f38c
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-72/optimizer.pt b/runs/l2r50-baseline/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f189f4d3cb0852a5b37710770bd0768c99bcb7b2
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6cabef6987a284d7969f5c72c6bb141dd5a1b7477d3bd68b01a9760d1eaf1ed5
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-72/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5631561581b3634362004f6c036145ee8e54d0f4
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5c9399d17854873e90933eddfa9944d5e3d0b38f
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-72/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8a986c37b53237a7bde101804a5602d204f737ba
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-72/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3ec45d94b0661de4e43586eec83b2caf40c79a8e
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/scheduler.pt b/runs/l2r50-baseline/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..43cf114590f1088fd438450226c42885d843da41
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/tokenizer.json b/runs/l2r50-baseline/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-72/trainer_state.json b/runs/l2r50-baseline/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..4a4ed44a25e3eccb71cefb35173978c892cb8813
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "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/l2r50-baseline/checkpoint-72/training_args.bin b/runs/l2r50-baseline/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856
diff --git a/runs/l2r50-baseline/checkpoint-720/chat_template.jinja b/runs/l2r50-baseline/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/config.json b/runs/l2r50-baseline/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/generation_config.json b/runs/l2r50-baseline/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/model.safetensors b/runs/l2r50-baseline/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b7b2d0918981b71cd166c8fb91120d79e7a9d70b
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8e9658178a8f39552ee9d0ea7a82346366c8cdc58ddf5790cafd13a4622ae1c5
+size 583356232
diff --git a/runs/l2r50-baseline/checkpoint-720/optimizer.pt b/runs/l2r50-baseline/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cd06efec9add1d59c2059eb669ec372bd90a6073
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:13c7d1de7bfe53f848aabf55ccd6e50f74f78ad3a367c41bf19bbbc075a8ea31
+size 1166825338
diff --git a/runs/l2r50-baseline/checkpoint-720/rng_state_0.pth b/runs/l2r50-baseline/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0977c0bf00c01a46d716db730a3c9bcc82905aaf
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/rng_state_1.pth b/runs/l2r50-baseline/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4e5cd4f14d76f3fe2c0762093e6bb01d818def44
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/rng_state_2.pth b/runs/l2r50-baseline/checkpoint-720/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1dbfc9354146f87ee95d6d46bdc97b42ae7b6f65
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/rng_state_3.pth b/runs/l2r50-baseline/checkpoint-720/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0a96d4dec11fa27b14ffd309db2393d72f178feb
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/scheduler.pt b/runs/l2r50-baseline/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..53133f8d1ca0990636972b84579aec1212febb2a
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/tokenizer.json b/runs/l2r50-baseline/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/tokenizer_config.json b/runs/l2r50-baseline/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r50-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/l2r50-baseline/checkpoint-720/trainer_state.json b/runs/l2r50-baseline/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b7d4a182b89de728c84615bab9a412fc23d672ef
--- /dev/null
+++ b/runs/l2r50-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.15279054641723633,
+ "learning_rate": 0.0,
+ "loss": 12.032773971557617,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.14960166811943054,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.03244400024414,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15128867328166962,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.995223999023438,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1506916582584381,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.919504165649414,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.15342381596565247,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821285247802734,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1556972712278366,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.697196006774902,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14487116038799286,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.569979667663574,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12676134705543518,
+ "learning_rate": 4.2e-05,
+ "loss": 11.461833000183105,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11772853136062622,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.363327026367188,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11291341483592987,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.28049087524414,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10883895307779312,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.213509559631348,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10732893645763397,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.156938552856445,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10623986274003983,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.109325408935547,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10568282008171082,
+ "learning_rate": 7.8e-05,
+ "loss": 11.064887046813965,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10570014268159866,
+ "learning_rate": 8.4e-05,
+ "loss": 11.017618179321289,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10558434575796127,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.970712661743164,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10604122281074524,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.910959243774414,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10543958842754364,
+ "learning_rate": 0.000102,
+ "loss": 10.856181144714355,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.1054498553276062,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788378715515137,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10559244453907013,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.71988296508789,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10397125035524368,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.65438175201416,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.1041317880153656,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569194793701172,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10443621873855591,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.487428665161133,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10395009815692902,
+ "learning_rate": 0.000138,
+ "loss": 10.400970458984375,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10360174626111984,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.315496444702148,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10450591146945953,
+ "learning_rate": 0.00015,
+ "loss": 10.213193893432617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10280632972717285,
+ "learning_rate": 0.000156,
+ "loss": 10.133968353271484,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.1046864241361618,
+ "learning_rate": 0.000162,
+ "loss": 10.02330207824707,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.102819062769413,
+ "learning_rate": 0.000168,
+ "loss": 9.94149398803711,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10328161716461182,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.827119827270508,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10189595818519592,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742497444152832,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10169170796871185,
+ "learning_rate": 0.000186,
+ "loss": 9.633317947387695,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10068603605031967,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.52493953704834,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058663785457611,
+ "learning_rate": 0.000198,
+ "loss": 9.419696807861328,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981208086013794,
+ "learning_rate": 0.000204,
+ "loss": 9.334211349487305,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09737160056829453,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.22092342376709,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09703405946493149,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.107383728027344,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09599828720092773,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.003129005432129,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09562192112207413,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.897794723510742,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09314555674791336,
+ "learning_rate": 0.000234,
+ "loss": 8.814261436462402,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09081187099218369,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.72358512878418,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08919718861579895,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.623990058898926,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08713056147098541,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.517800331115723,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08214829117059708,
+ "learning_rate": 0.000258,
+ "loss": 8.465965270996094,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.07918018847703934,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.381292343139648,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.0780007541179657,
+ "learning_rate": 0.00027,
+ "loss": 8.296937942504883,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07379113882780075,
+ "learning_rate": 0.000276,
+ "loss": 8.202176094055176,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07059375196695328,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.117435455322266,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06655477732419968,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.0595703125,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.06137591600418091,
+ "learning_rate": 0.000294,
+ "loss": 7.98896598815918,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05558951944112778,
+ "learning_rate": 0.0003,
+ "loss": 7.941658020019531,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.049338117241859436,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.887637138366699,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04569879546761513,
+ "learning_rate": 0.000312,
+ "loss": 7.820349216461182,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039653461426496506,
+ "learning_rate": 0.000318,
+ "loss": 7.7988972663879395,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.034807950258255005,
+ "learning_rate": 0.000324,
+ "loss": 7.761681079864502,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.028422197327017784,
+ "learning_rate": 0.00033,
+ "loss": 7.725477695465088,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.026021407917141914,
+ "learning_rate": 0.000336,
+ "loss": 7.723349094390869,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.02187270112335682,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.701629161834717,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.017857514321804047,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.67899751663208,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.0178492721170187,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.668330192565918,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.021152706816792488,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.632287502288818,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.015957031399011612,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.647801399230957,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.015929747372865677,
+ "learning_rate": 0.000372,
+ "loss": 7.635293960571289,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01604113169014454,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.615938186645508,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.017819983884692192,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.626930236816406,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014306032098829746,
+ "learning_rate": 0.00039,
+ "loss": 7.615473747253418,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012184244580566883,
+ "learning_rate": 0.000396,
+ "loss": 7.598634719848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.012211262248456478,
+ "learning_rate": 0.000402,
+ "loss": 7.568653106689453,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.011746793054044247,
+ "learning_rate": 0.000408,
+ "loss": 7.573452472686768,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.01280977763235569,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542331695556641,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.009734151884913445,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.5435590744018555,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.010181108489632607,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.5502424240112305,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.547312259674072,
+ "eval_runtime": 62.3648,
+ "eval_samples_per_second": 39.157,
+ "eval_steps_per_second": 1.235,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01241398137062788,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.529778480529785,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.023448936641216278,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543205261230469,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.04853801429271698,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.520420551300049,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.06804070621728897,
+ "learning_rate": 0.00045,
+ "loss": 7.542707443237305,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.030498052015900612,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4901018142700195,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.03657301515340805,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.486364841461182,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01895741932094097,
+ "learning_rate": 0.000468,
+ "loss": 7.509302139282227,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.03383979946374893,
+ "learning_rate": 0.000474,
+ "loss": 7.495736122131348,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.030954014509916306,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.499754428863525,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.012452583760023117,
+ "learning_rate": 0.000486,
+ "loss": 7.461048126220703,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02857092209160328,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450096130371094,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.02721766196191311,
+ "learning_rate": 0.000498,
+ "loss": 7.411756992340088,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.023018648847937584,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.404212951660156,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.018463028594851494,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.405395984649658,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.01296076737344265,
+ "learning_rate": 0.000516,
+ "loss": 7.396377086639404,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.020404741168022156,
+ "learning_rate": 0.000522,
+ "loss": 7.41644287109375,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.049587856978178024,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3768720626831055,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.07648765295743942,
+ "learning_rate": 0.000534,
+ "loss": 7.432955741882324,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.037720050662755966,
+ "learning_rate": 0.00054,
+ "loss": 7.386064529418945,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04492560774087906,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.374808311462402,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.03741968050599098,
+ "learning_rate": 0.000552,
+ "loss": 7.372648239135742,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.035133350640535355,
+ "learning_rate": 0.000558,
+ "loss": 7.330509185791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.01538622472435236,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.337895393371582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.026502281427383423,
+ "learning_rate": 0.00057,
+ "loss": 7.376590728759766,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.015425794757902622,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.32114839553833,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.021687887609004974,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.34041690826416,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.018043948337435722,
+ "learning_rate": 0.000588,
+ "loss": 7.331187725067139,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.018561577424407005,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.312553405761719,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.015236113220453262,
+ "learning_rate": 0.0006,
+ "loss": 7.312087535858154,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.025861693546175957,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313227653503418,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.04665667563676834,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.324156761169434,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.05982595309615135,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.329349994659424,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0163678340613842,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.284811973571777,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.03579917177557945,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.287506103515625,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.02495778724551201,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.29565954208374,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.015671970322728157,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.265588283538818,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.02634076029062271,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.251153945922852,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.0244399756193161,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.266889572143555,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.016445452347397804,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.262601852416992,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.022150559350848198,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.254458904266357,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.020129311829805374,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.22679328918457,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.01692206598818302,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.242511749267578,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.020666515454649925,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.2096848487854,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.011270261369645596,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.233948707580566,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.01649278961122036,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.204669952392578,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.014958860352635384,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.197600364685059,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.016921430826187134,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.190229415893555,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.01064895000308752,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.147868633270264,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.013820515014231205,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.160879611968994,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.010813258588314056,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.176504611968994,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.015348436310887337,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.155412673950195,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.01752752810716629,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.161115646362305,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.013849032111465931,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.139877796173096,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.016139330342411995,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.158963680267334,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.02282782830297947,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.169046401977539,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.04770804941654205,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.157199859619141,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.07451057434082031,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.187100887298584,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.033815596252679825,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.169025421142578,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.03338974714279175,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.171016693115234,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.026282228529453278,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.123952865600586,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.02548818849027157,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.135553359985352,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.030253952369093895,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.130056381225586,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.01603938639163971,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.103252410888672,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.02752869576215744,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.110861778259277,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.019893109798431396,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.09289026260376,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.020402831956744194,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.095266342163086,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.022882258519530296,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.089855194091797,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.01629767380654812,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.076451301574707,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.02176031470298767,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.061367511749268,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.02235402911901474,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 7.027061939239502,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031063389033079147,
+ "learning_rate": 0.000599788973374255,
+ "loss": 7.028373718261719,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.03176683187484741,
+ "learning_rate": 0.000599778806120077,
+ "loss": 7.012823581695557,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.05941104888916,
+ "eval_runtime": 60.1072,
+ "eval_samples_per_second": 40.627,
+ "eval_steps_per_second": 1.281,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03477974608540535,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 7.03495979309082,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.027505196630954742,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 7.010125637054443,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027248458936810493,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 7.021267890930176,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.020315101370215416,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.98326301574707,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.015454275533556938,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 7.010747909545898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.025611715391278267,
+ "learning_rate": 0.000599712781599403,
+ "loss": 7.000109672546387,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.024679528549313545,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.976410865783691,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.0338185615837574,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.973294734954834,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03478233143687248,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.952219009399414,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.031237807124853134,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.935559272766113,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.042907390743494034,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.956310272216797,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.04111853241920471,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.932535648345947,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.03962451219558716,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.92794942855835,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.036775294691324234,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.894155025482178,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.042896587401628494,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.900933265686035,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.039001282304525375,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.893650054931641,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.052544210106134415,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.890453338623047,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.03537073731422424,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.8942389488220215,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.0516793429851532,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.874975204467773,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.05976163223385811,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.8857197761535645,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.062239211052656174,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.876457214355469,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.05183164402842522,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.828983306884766,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03590260446071625,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.8269758224487305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.04987398162484169,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.823321342468262,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.03901644051074982,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.817424297332764,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.036352530121803284,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.745781421661377,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.03781135007739067,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.769353866577148,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04964586719870567,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.7394232749938965,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.04955592378973961,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.747864246368408,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.05155361071228981,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.743919372558594,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02506791241466999,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.693220138549805,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.030350662767887115,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.715982913970947,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.032011594623327255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.675498962402344,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.026340607553720474,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.642691612243652,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03284226730465889,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.645880699157715,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.03563324362039566,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.634356498718262,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.041493043303489685,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.62106990814209,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.047498103231191635,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.634011745452881,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.03880160674452782,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.628514289855957,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.027075912803411484,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.5908684730529785,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.028760140761733055,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.588057518005371,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.030250735580921173,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.547581195831299,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.022596072405576706,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.52133846282959,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.023916540667414665,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.549600601196289,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.02216939441859722,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.518850326538086,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.026535656303167343,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.519508361816406,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.029200853779911995,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.477306365966797,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.0517193078994751,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.500006675720215,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.06939307600259781,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.533053398132324,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.045151304453611374,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.498340606689453,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.036029063165187836,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.4960174560546875,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04427166283130646,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.47222900390625,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.06193973869085312,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.48097038269043,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06815893203020096,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.432027816772461,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06281685084104538,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.473082065582275,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05922495201230049,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.465715408325195,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.06627334654331207,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.47625732421875,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.028028395026922226,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.427460193634033,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05015302821993828,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.434232711791992,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.02703779935836792,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.389379501342773,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.03277864307165146,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.409392833709717,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.02305285818874836,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.405311584472656,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.02474776841700077,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.356228828430176,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.026074931025505066,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.339585304260254,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.0258377343416214,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.3491716384887695,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.019498251378536224,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.346578598022461,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.019359730184078217,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.354335784912109,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.01875847578048706,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.306829452514648,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.020066479220986366,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.29793643951416,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.021631279960274696,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.300845146179199,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.01800725981593132,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2870683670043945,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.016764888539910316,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.306094169616699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.294444561004639,
+ "eval_runtime": 59.9456,
+ "eval_samples_per_second": 40.737,
+ "eval_steps_per_second": 1.284,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.016892975196242332,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.255423069000244,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02250395156443119,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.248365879058838,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.03086039051413536,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.25405216217041,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.05838177725672722,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.264628887176514,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.08821047842502594,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.2654128074646,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.0596868135035038,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.256074905395508,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.036612868309020996,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.233466148376465,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.03273693844676018,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.229116916656494,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.03193201497197151,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.25473690032959,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.0356534980237484,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.205209732055664,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.03991105407476425,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.192956924438477,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.04085416719317436,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.19998836517334,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.04045668989419937,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.197896480560303,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.029189078137278557,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.189165115356445,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.028069501742720604,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.153555393218994,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.031848154962062836,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.181221008300781,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.032568398863077164,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.144604682922363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.03754395246505737,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.157140731811523,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.042267728596925735,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.153627395629883,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.03884892165660858,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.102329730987549,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.029922902584075928,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.134795188903809,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.024693479761481285,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.092944145202637,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.028432564809918404,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.13333797454834,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.03100213222205639,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.12111759185791,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.038483861833810806,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.086881160736084,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.044493868947029114,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.093021392822266,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.03425206243991852,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.063352584838867,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.01978442072868347,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.03793478012085,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.02760389633476734,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.073945045471191,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.03323278948664665,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.034135341644287,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.05422206223011017,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.079098701477051,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.0713881328701973,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.106328010559082,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.053028590977191925,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.089874267578125,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.04057721421122551,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.069232940673828,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.046430379152297974,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.092230319976807,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.05687399581074715,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.028938293457031,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.059902168810367584,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.006396770477295,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.04497241973876953,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.01632022857666,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.04050197824835777,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.017565727233887,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04236174002289772,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.039917945861816,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03394201025366783,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.995017051696777,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026861315593123436,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.978480339050293,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.024874169379472733,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.963851451873779,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.018949026241898537,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.95567512512207,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.022883078083395958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.95168399810791,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.023395780473947525,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.931952476501465,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.030125819146633148,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.93739652633667,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03762955218553543,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.944676399230957,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.049065981060266495,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.947547435760498,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.0453120581805706,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.913639545440674,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03553042188286781,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.917507171630859,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.04797424376010895,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.955570220947266,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03531454876065254,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.924825668334961,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.03365863487124443,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.917768478393555,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.03309968486428261,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.919291973114014,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.037811096757650375,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.897099494934082,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.04826788976788521,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.897731781005859,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.050907861441373825,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.88458251953125,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.032129641622304916,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.846349716186523,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.02882024459540844,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.856315612792969,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.027869556099176407,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.855565071105957,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.026594234630465508,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.848012924194336,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.020750340074300766,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.837006092071533,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.022861730307340622,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.8100457191467285,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023147039115428925,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.8064866065979,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.020518288016319275,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.83711576461792,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.024041442200541496,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.83284854888916,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.026716986671090126,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.806962013244629,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.033261705189943314,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.791579246520996,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.05089087039232254,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.810479164123535,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05353274568915367,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.794252395629883,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04168304055929184,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.789210796356201,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.8550920486450195,
+ "eval_runtime": 65.4688,
+ "eval_samples_per_second": 37.3,
+ "eval_steps_per_second": 1.176,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.060540877282619476,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.800626754760742,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.06008520722389221,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.8248395919799805,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.07319564372301102,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.812692165374756,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.06908340752124786,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.860973358154297,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06724793463945389,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.821323394775391,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.04584347829222679,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.789976119995117,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.05456804856657982,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.821063995361328,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04885503649711609,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.818500995635986,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.03758278489112854,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.779779434204102,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03213796019554138,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.782035827636719,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.031071286648511887,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.764484405517578,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.026362834498286247,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.744431972503662,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.0272222813218832,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.75265645980835,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.022018548101186752,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.764186859130859,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.021420516073703766,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.734532356262207,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.019871113821864128,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.720821857452393,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.019162891432642937,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.687687397003174,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.017518281936645508,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.696071624755859,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.018939726054668427,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.7136406898498535,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019515277817845345,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.655041217803955,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.018648074939846992,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.668800354003906,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.014518531039357185,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.627157211303711,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01419292576611042,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.636124610900879,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.016272306442260742,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.62433385848999,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01685306988656521,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.657917022705078,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.01954503171145916,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.6527276039123535,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02292281575500965,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.631353378295898,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.024640562012791634,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.656354904174805,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.02428167685866356,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.627293586730957,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.02421819046139717,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.59086799621582,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.02819465845823288,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.619235515594482,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03129513934254646,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.606142997741699,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.037176862359046936,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.596439838409424,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.039142634719610214,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.580347061157227,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.03593158721923828,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.628694534301758,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.051788847893476486,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.606560707092285,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.07025107741355896,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.622342109680176,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.07200678437948227,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.670868873596191,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06029047444462776,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.607696533203125,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0436997190117836,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.641589164733887,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.0358283594250679,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.622613430023193,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.03662537410855293,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.600226879119873,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.04884882643818855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.631810665130615,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.051791224628686905,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.610857963562012,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.050232917070388794,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.598959922790527,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.05249505862593651,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.604840278625488,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.05327361077070236,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.58354377746582,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.04587603732943535,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.607364654541016,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.03252631053328514,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.566704750061035,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.028956444934010506,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.54358434677124,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.025176186114549637,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.562042713165283,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.024405663833022118,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.564180374145508,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.021510440856218338,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.511042594909668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.020716756582260132,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.546881675720215,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.01633349247276783,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.5273308753967285,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.01739025115966797,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.531644344329834,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.016529511660337448,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.500199317932129,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.016149025410413742,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.499835014343262,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.016311004757881165,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.508077621459961,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013937168754637241,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.45998477935791,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.015332204289734364,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.483034610748291,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.01817774772644043,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.460453987121582,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01964104175567627,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.490904331207275,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.01984848827123642,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.457289695739746,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.021455412730574608,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.449621200561523,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.026185013353824615,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.440423011779785,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030605517327785492,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.415837287902832,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.04323967918753624,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.448628902435303,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.05552388355135918,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.468829154968262,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.04315539821982384,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.46262788772583,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.03938249126076698,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.419576644897461,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.035738006234169006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.451445579528809,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.486734867095947,
+ "eval_runtime": 59.1862,
+ "eval_samples_per_second": 41.26,
+ "eval_steps_per_second": 1.301,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.0251154862344265,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.397712707519531,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.025358282029628754,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.394437789916992,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.02517765201628208,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.394597053527832,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.02640875056385994,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.394374847412109,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.028803396970033646,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.402459144592285,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.035324614495038986,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.41120719909668,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.03583458811044693,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.383355140686035,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.029206758365035057,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.366024017333984,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.02396644651889801,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.357314586639404,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.02260388433933258,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.356644630432129,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.022213106974959373,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.3562541007995605,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.027255412191152573,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.325287818908691,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.031459566205739975,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.348897933959961,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.041694507002830505,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.372900009155273,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.03855380415916443,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.350975513458252,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.03394724428653717,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.3485002517700195,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04066679999232292,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.326665878295898,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.045741837471723557,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.334282875061035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.036953166127204895,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.356168746948242,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03286828473210335,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.328250885009766,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.037477727979421616,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.348586559295654,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.04315613582730293,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.31583309173584,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.044763874262571335,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.3291497230529785,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.032741058617830276,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.33430290222168,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.03227193281054497,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.349030017852783,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02953953854739666,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.330896377563477,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.029048655182123184,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.277267932891846,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.025840669870376587,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.269718170166016,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.03215832635760307,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.288306713104248,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03580722585320473,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.282713413238525,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.03450988605618477,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.290460109710693,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.02972491644322872,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.274708271026611,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.02831237204372883,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.243052005767822,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.03574911132454872,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.266117095947266,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.041975002735853195,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.265738487243652,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03802219405770302,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.23988151550293,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.034670088440179825,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.179251670837402,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.02888304553925991,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.250150203704834,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.0307552982121706,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.283881187438965,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0314924456179142,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.247703552246094,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.02790047600865364,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.198573589324951,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.024830086156725883,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.1692094802856445,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.02297995053231716,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.198274612426758,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.01813298836350441,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.189762115478516,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.018613291904330254,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.185969352722168,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.018532240763306618,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.191168785095215,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.017877845093607903,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.153474807739258,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.021087097004055977,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.190171241760254,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.02551070973277092,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.193746089935303,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03235168755054474,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.157557010650635,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.037432219833135605,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.17518424987793,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03995099663734436,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.1977009773254395,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.04077053815126419,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.167122840881348,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.03235197067260742,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.1771240234375,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03944401070475578,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.176766395568848,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04216986894607544,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.198797702789307,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.04853671044111252,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.144392013549805,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.05713365226984024,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.170246601104736,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.053259290754795074,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.202652931213379,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.04721004515886307,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.171487808227539,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.043663956224918365,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.221770286560059,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.04425753280520439,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.1968584060668945,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.04229629039764404,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.172515869140625,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.04114510864019394,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.1627278327941895,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.03377211466431618,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.131871700286865,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.026680856943130493,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.0960235595703125,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.03078189492225647,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.152295112609863,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.037178631871938705,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.142334938049316,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.03887737914919853,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.114391326904297,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.02811267040669918,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.110956192016602,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.029429111629724503,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.096487045288086,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.024876514449715614,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.069561004638672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1577582359313965,
+ "eval_runtime": 65.5823,
+ "eval_samples_per_second": 37.236,
+ "eval_steps_per_second": 1.174,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.02211506851017475,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.067872047424316,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.02366338111460209,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.062973499298096,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.026436878368258476,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.065313339233398,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.026484379544854164,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.05936861038208,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.028798609972000122,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.033290386199951,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.030614856630563736,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.046186447143555,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.03394879773259163,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.0048112869262695,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02851700969040394,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.010659217834473,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03189508616924286,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.03505802154541,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.031545400619506836,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.019341468811035,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.02288930118083954,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.002709865570068,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.023706629872322083,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.014395713806152,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.027981100603938103,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.006214141845703,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.02349715493619442,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 4.985332489013672,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.020962726324796677,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 4.984115123748779,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02265843003988266,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 4.993348121643066,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.024261485785245895,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 4.999449253082275,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.02482007071375847,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 4.964545249938965,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.022995948791503906,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 4.941338539123535,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.023354554548859596,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.005559921264648,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.027350254356861115,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 4.944278717041016,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.02895866334438324,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 4.947670936584473,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03199324756860733,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 4.975154876708984,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.029868151992559433,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.928585052490234,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.02365083061158657,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.903700828552246,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.022933954373002052,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 4.967617988586426,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.021939760074019432,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.9210710525512695,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02312186360359192,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.931735038757324,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02724861167371273,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.906576156616211,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.03676227480173111,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.887643337249756,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.04281555116176605,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.928301811218262,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03247895464301109,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.888429641723633,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03629881516098976,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.893073081970215,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.0348011776804924,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.892773628234863,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.038923949003219604,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.903696060180664,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.04905718192458153,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.922028541564941,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.04554931819438934,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.902357578277588,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.04406777769327164,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.94931173324585,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.04494761303067207,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.921416759490967,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.04763688147068024,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.939183235168457,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.05349935218691826,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.902198314666748,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.0488591343164444,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.957999229431152,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04951281100511551,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.932676315307617,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.04619541019201279,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.908070087432861,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.04115881398320198,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.917953014373779,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.03701610490679741,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.907709121704102,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03420389071106911,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.904470443725586,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.034402843564748764,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.870728492736816,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.03629710152745247,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.875079154968262,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03232356533408165,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.892777919769287,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.028566310182213783,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.861915588378906,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.022119825705885887,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.856949806213379,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.021727468818426132,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.871177673339844,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.023206677287817,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.867570400238037,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.023890787735581398,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.84547233581543,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.021241918206214905,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.819486141204834,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.018030373379588127,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.788675785064697,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.017260869964957237,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.816289901733398,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.018945075571537018,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.849693298339844,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.021170197054743767,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.805295944213867,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.018375547602772713,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.815509796142578,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.022502927109599113,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.83349609375,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.02621557004749775,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.784232139587402,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.023311398923397064,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.816693305969238,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.019913045689463615,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.795862674713135,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.023556388914585114,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.778826713562012,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.023836379870772362,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.740131378173828,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.0193135067820549,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.766585826873779,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.017654873430728912,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.771278381347656,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.01856694184243679,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.808339595794678,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.019093621522188187,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.710655212402344,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.018704699352383614,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.770557403564453,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.832436561584473,
+ "eval_runtime": 63.9864,
+ "eval_samples_per_second": 38.164,
+ "eval_steps_per_second": 1.203,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.016009675338864326,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.692385673522949,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.01807156205177307,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.733402729034424,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.01711299642920494,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.719799995422363,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.019745303317904472,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.723343849182129,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.02332913503050804,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.699549198150635,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.024299707263708115,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.644092559814453,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.023851502686738968,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.744509696960449,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.021520040929317474,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.695164680480957,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.02075435407459736,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.718515396118164,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.02352878823876381,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.685891151428223,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.024314764887094498,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.718094825744629,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.027536096051335335,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.661544322967529,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03575879707932472,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.6916728019714355,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0375053770840168,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.68641471862793,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.03576789051294327,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.6981072425842285,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.038143567740917206,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.707883834838867,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03954721614718437,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.709781646728516,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.033939823508262634,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.674158096313477,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.03310248255729675,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.6948370933532715,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.030596869066357613,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.658214092254639,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.028528712689876556,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.639871597290039,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03313611447811127,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.691597938537598,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03343856707215309,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.676050662994385,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.027131494134664536,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.671490669250488,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03159845992922783,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.668791770935059,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.03924039378762245,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.657255172729492,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.05003048852086067,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.65948486328125,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04493970051407814,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.667667388916016,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.04437879100441933,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.6917853355407715,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.0404348224401474,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.662047863006592,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03907548263669014,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.691860198974609,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.03383446857333183,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.63809871673584,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.028899066150188446,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.6787214279174805,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.03494799882173538,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.651205062866211,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0396675169467926,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.6917572021484375,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03259819746017456,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.635648727416992,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.033084772527217865,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.639579772949219,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03200574591755867,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.628852844238281,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03145518898963928,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.628213405609131,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02727407030761242,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.646589279174805,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024479303508996964,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.625995635986328,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02502978965640068,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.609958648681641,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.023321431130170822,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.612398147583008,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.02320467308163643,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.604928970336914,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02167782373726368,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.624571800231934,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.02163386158645153,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.609978675842285,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.01926923543214798,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.617420673370361,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.018687771633267403,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.5888776779174805,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.017586344853043556,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.607904434204102,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.015697071328759193,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.561367034912109,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.01588456705212593,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.581870079040527,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.016177186742424965,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.540706157684326,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.01870754361152649,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.564977645874023,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.0194147489964962,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.5407395362854,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.017896190285682678,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.535858154296875,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.017645087093114853,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.597236633300781,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.01614229753613472,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.534079551696777,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.014850233681499958,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.534573554992676,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.01395193487405777,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.537178993225098,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.014709637500345707,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.574308395385742,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.01305233035236597,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.523541450500488,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.013394678011536598,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.541913032531738,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.015623007901012897,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.5770697593688965,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.018667325377464294,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.528620719909668,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.020529912784695625,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.513266563415527,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.02259555086493492,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.537125587463379,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.02315410040318966,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.511988162994385,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.020653149113059044,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.535824775695801,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.021253054961562157,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.529706954956055,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.02325197122991085,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5341315269470215,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02222151681780815,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.533261299133301,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.026134585961699486,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.502186298370361,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.626241683959961,
+ "eval_runtime": 60.1222,
+ "eval_samples_per_second": 40.617,
+ "eval_steps_per_second": 1.281,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.026782343164086342,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.500919342041016,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.02529173344373703,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.464212417602539,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.024648968130350113,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.513246059417725,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.022771896794438362,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.487264633178711,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.0219362061470747,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.483428955078125,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02365831658244133,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.454824447631836,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.023619748651981354,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.491072177886963,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.024201011285185814,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.479026794433594,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.021556416526436806,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.460854530334473,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.019867734983563423,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4419026374816895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.019787827506661415,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.462090969085693,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.021546000614762306,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476223945617676,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02101939357817173,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449615955352783,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02163819409906864,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.474246025085449,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.024869777262210846,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462414741516113,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03550508990883827,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.486397743225098,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.04418666660785675,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.472944259643555,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.04833201691508293,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.492634296417236,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.03847130015492439,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.502685546875,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03628981113433838,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.441823959350586,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03653397783637047,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.492850303649902,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.04263930395245552,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.501854419708252,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.04586539417505264,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.521252632141113,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.04529019817709923,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.457171440124512,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.048831213265657425,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.5212249755859375,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.048187270760536194,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.493741035461426,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.0537189245223999,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.508977890014648,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.04576989635825157,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.517671585083008,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.052605368196964264,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.495840072631836,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.05108372122049332,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.545809745788574,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04195109009742737,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.565920829772949,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.04009925574064255,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.4908952713012695,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03646770864725113,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.537149906158447,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.03961837291717529,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.483705520629883,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.032036811113357544,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.459076404571533,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.027374614030122757,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.453319549560547,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02420882135629654,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.457270622253418,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02157244086265564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.500612258911133,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.01973746530711651,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.431562900543213,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.01785477064549923,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.422365665435791,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.017458653077483177,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.433522701263428,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.014534399844706059,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.4476447105407715,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.014711728319525719,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.452369689941406,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.013569226488471031,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.4195637702941895,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.01365713868290186,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.442552089691162,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.012784700840711594,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.424862861633301,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.012614605017006397,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.41807746887207,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.012734956108033657,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.435765266418457,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.012782269157469273,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.421433448791504,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.013701274059712887,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.403858184814453,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.013500962406396866,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.397984981536865,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.01346874050796032,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.382118225097656,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.012129356153309345,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.428922653198242,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.012786509469151497,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.407697677612305,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.013901978731155396,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.3752570152282715,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.0134211964905262,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.386545181274414,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.013028023764491081,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.371098518371582,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.012107999064028263,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.394218921661377,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.012286592274904251,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.39046573638916,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.012124782428145409,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.379203796386719,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.012390432879328728,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.40093994140625,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.012725715525448322,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.376626014709473,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.01315116137266159,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.364200592041016,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.013190081343054771,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.379785537719727,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.012764527462422848,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.3778181076049805,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.013059483841061592,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.372443199157715,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.01390585582703352,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.373903751373291,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.014099890366196632,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.381858825683594,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.014391077682375908,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.404170513153076,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.015496482141315937,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.3394317626953125,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.016230924054980278,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.374095916748047,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.017547743394970894,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.337717533111572,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.483645915985107,
+ "eval_runtime": 63.2189,
+ "eval_samples_per_second": 38.628,
+ "eval_steps_per_second": 1.218,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.020066089928150177,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.317806243896484,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.02620597556233406,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.376364231109619,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.03331754356622696,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.340723991394043,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030469030141830444,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.338406562805176,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.026675090193748474,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.2919111251831055,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.02828090451657772,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.336582183837891,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.024871986359357834,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.3433380126953125,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.02106480859220028,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.297299385070801,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.01852753758430481,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.348143577575684,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.019662270322442055,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.314255714416504,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.021540015935897827,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.3137054443359375,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.023506326600909233,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.3354716300964355,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.027044935151934624,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.327136516571045,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.023469088599085808,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.328492164611816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.023433605208992958,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.290238380432129,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.023822467774152756,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.345137596130371,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.020966488867998123,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.2878007888793945,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.021229440346360207,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.326671123504639,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.0217963308095932,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.243185043334961,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.023806264623999596,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.278131484985352,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.024476056918501854,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.309154987335205,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.02284400910139084,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.271709442138672,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024246858432888985,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.301370620727539,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02579067461192608,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.2932586669921875,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.02583981491625309,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.282797336578369,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.026498282328248024,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.3008270263671875,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.027629991993308067,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.331838130950928,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.025895344093441963,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.280893802642822,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.024819236248731613,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.297398090362549,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.025791674852371216,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.298689365386963,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.027935819700360298,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.30552864074707,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.028840109705924988,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.293124198913574,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.021851222962141037,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.329113483428955,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.021401897072792053,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.299282550811768,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.021861353889107704,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.244022369384766,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.018081262707710266,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.279950141906738,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016916614025831223,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.287345886230469,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018378548324108124,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.327869892120361,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016363168135285378,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.287835121154785,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017048629000782967,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.324196815490723,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.014845011755824089,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.286575794219971,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01533716544508934,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.322636604309082,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.015874335542321205,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.284470558166504,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01700909622013569,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.266241073608398,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.017468301579356194,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.295265197753906,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.015518859960138798,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.246603965759277,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.014433023519814014,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.265694618225098,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.014706660993397236,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.250633239746094,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.015549260191619396,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.2669219970703125,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.015065282583236694,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.273249626159668,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.013909484259784222,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.24039363861084,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.013733850792050362,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.2534942626953125,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.015442739240825176,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.2614898681640625,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.015869593247771263,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.2652692794799805,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.016044290736317635,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.245119094848633,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.014800752513110638,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.228758335113525,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.014147124253213406,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.236403942108154,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.01674819551408291,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.215281009674072,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.018667737022042274,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.279355049133301,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.019503243267536163,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.201269149780273,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.01935950480401516,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.2525434494018555,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.020745854824781418,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.273874282836914,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.022974150255322456,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.248868942260742,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.024198051542043686,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.27025032043457,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.024863505735993385,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.258732795715332,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.022685762494802475,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.252812385559082,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020338593050837517,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.21738862991333,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01952785812318325,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.275789260864258,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.020423095673322678,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.2694220542907715,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.020469725131988525,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.258047103881836,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02074299566447735,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.254276275634766,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.02305132895708084,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.232949256896973,
+ "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/l2r50-baseline/checkpoint-720/training_args.bin b/runs/l2r50-baseline/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d3d3b5522a85e8a0b3c7ee36176a20a5f948afe4
--- /dev/null
+++ b/runs/l2r50-baseline/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8b4e959b03b30e921bafc558e2e84e35f8311db9c2b16344d9acbda90d03386
+size 4856