diff --git a/.gitattributes b/.gitattributes
index e1d793e062afa5fd4c177044dc7aa2898257213d..5de9a3a1339ab7801e096f1723c451e1391619f6 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -85,3 +85,14 @@ runs/base-ssl/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/base-ssl/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/base-ssl/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/base-ssl/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-lr6e-4/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1080/config.json b/runs/baseline-lr6e-4/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1080/generation_config.json b/runs/baseline-lr6e-4/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1080/model.safetensors b/runs/baseline-lr6e-4/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7f3011a67520598c425b4b90212947c5da4eff5c
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d151b92ce851ab127ca5d1266b37396d0e74856c8e611148d07f89e03b8f245
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b91234da7664802039d123a48ad7ec5d45da7210
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:71f785b3a6002f76f17fcefaf5f0bcaa9bdf3bd980198790cea12e3a98c06b6d
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ff81a4a04de793f1c690eab304502628a6f01a16
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e64ff3db32365cabac6ffad743c22ab2586a3c7538842f851d54fcc9b00320b
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2e0fc04a0aae1c0cb2027f4e52b0d2e25910d9a8
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:837b65fefb8e1f24a6981b0d4649ff164abbce25b5c9c0d885ed58d7e0986bae
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3e275d97268eb212b051090ffcda70a20a7bd2eb
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bdeda49f9c209232e61e89d6b373289c81e91ac24ee327462ddf24dddafe25ed
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1080/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1080/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2981dda92e49c92cf3e3122d63dddac8ee54759
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-1080/training_args.bin b/runs/baseline-lr6e-4/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1440/config.json b/runs/baseline-lr6e-4/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1440/generation_config.json b/runs/baseline-lr6e-4/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1440/model.safetensors b/runs/baseline-lr6e-4/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..46e46fdf25f03145bad7f9bd105b637f490d9f53
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d08a7515713d8de833a236401dbf870e4978722186fa10e38a1918dda8cad7ba
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a1abc33111a3a44822f5508ca844148ba7d6664e
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c1982e7c9e57306eedeedeaaafb58777ea674089ba67d2c0fa7390f21c9eea4
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3c396253e5ad58aa3254e1cb9364198815e3ba61
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad41999a3021e51cc92b222472cf4756a254132cabf58c4c2e1ee206c7366885
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..08b5f24cb1ec06dc192e471442f86bfe5e398030
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29848a162fabe62f2066ebb397d9dc38254fb7b578fd1c8908975df46738482d
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e00c7bc69a3fbefc469c85cfede8a8a9403ecdc8
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5ca62ced3e9ed490d18d005ea4ac3ea68e1b051ea3ef0feded5dd8875ffb40a4
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1440/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1440/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..bda202ca6d92d3ee708b737bdc495f7c185b517d
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-1440/training_args.bin b/runs/baseline-lr6e-4/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1800/config.json b/runs/baseline-lr6e-4/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1800/generation_config.json b/runs/baseline-lr6e-4/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1800/model.safetensors b/runs/baseline-lr6e-4/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..97206889f1a61fb091f6266c6cab6938604330fe
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f194030e3215d95ef6c9a0aaf0645eff443b590b2f01c635cb8bd01560f7b089
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a0fb04480a9cb20e8144f39c5200a6216d693de4
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c5d3148f4794bb573d72fc070032c2b07063241628bb0239ebb96b9028e2160
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..304a7576d9bd060137258dba420a3e1ff00587c1
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:987694c44f0af3a8ae4e43e3677bef48a1cfa8e57eee3832ef223e9b8ad80516
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..75486c47bfa9499bfe91975e3af3355c9526365c
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea5ecba78b648c2a45cab91d590e52b7295077372e6bf91c1591d3fb6a5535ca
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cc00d28bf1d3c152dd57b4e152eebb5a75268a48
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5c13118c758fe95682074ef807a1660af2ca020e5b32dd995760a77b78e786f0
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1800/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-1800/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..06e3c1e03dc07e59587adf99d87e10b90aacd6a9
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-1800/training_args.bin b/runs/baseline-lr6e-4/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2160/config.json b/runs/baseline-lr6e-4/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2160/generation_config.json b/runs/baseline-lr6e-4/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2160/model.safetensors b/runs/baseline-lr6e-4/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c33191ad2be7d2dcc687db69517302e0f903f143
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a31c1a12a6c85434bf795aa60f63b475a30be8bad289b2a8e4b933fe1b98da90
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4910e52eea6f81ae8423394eefe0951e6f7d175d
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f59e88b595fec6f655d0dd7ab4cc818875af16852a11bb649caefda0d4e84863
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..86ca1aad69953afb19f9f8da4c01764c2f44d22b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:253e65ee29b5e996242fd0eef4ab59e40fe385a114b29c442de150cf74084b60
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3031af55ab1520df411513147e482ece04c4d4f6
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:04c9d382d23a06579a44352e657618aaf7b647b0f5de65751c81300c8f96f42a
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cfe439753906dadad51f11779ef9f425378a7857
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5cb2a89dd39217d5729496222633b6ae963778e9f10a9c38309eff07088a5195
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2160/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2160/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..71acd39a60c9899e64dff6d56c39e23c3f9b9c9c
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.136509418487549,
+ "eval_runtime": 49.9105,
+ "eval_samples_per_second": 48.928,
+ "eval_steps_per_second": 1.543,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.03253521770238876,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 2.996598243713379,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04506896063685417,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 2.9996728897094727,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.048917125910520554,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.01076602935791,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.04610349237918854,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 2.995270252227783,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.045683592557907104,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.03594970703125,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.05354170873761177,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.0199317932128906,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.06507625430822372,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.0495800971984863,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.07209842652082443,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.0578527450561523,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.07035882771015167,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.0229921340942383,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.05863689258694649,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.030324935913086,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.04508105292916298,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.0372116565704346,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04252060130238533,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.0351850986480713,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.044466983526945114,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.04567289352417,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.04447634890675545,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.0374679565429688,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.04119309037923813,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.0243847370147705,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03847199305891991,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.001368522644043,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03716685250401497,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.0389842987060547,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.03758823871612549,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.0392327308654785,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.039980918169021606,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.048888683319092,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.038987886160612106,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.048262119293213,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03671572729945183,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.0321078300476074,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.03564755246043205,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.005302906036377,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.033568378537893295,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.031449556350708,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03358025476336479,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.0719268321990967,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.033897947520017624,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.0156619548797607,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.030079921707510948,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.037581205368042,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02967393398284912,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.0666556358337402,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.031029149889945984,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.095435619354248,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.03093329258263111,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.062168598175049,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.030287278816103935,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.037875175476074,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.030194830149412155,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.072413921356201,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.029436185956001282,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.0657665729522705,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.028946757316589355,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.069164276123047,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.028802946209907532,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.0415639877319336,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02906205505132675,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.104550361633301,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.029995542019605637,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.068049430847168,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03007844276726246,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.0652952194213867,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02816668152809143,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.1197381019592285,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.02691139280796051,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.0562210083007812,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.02815496176481247,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.1038076877593994,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.028936119750142097,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.0725107192993164,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.03108699806034565,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.0953660011291504,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.030596446245908737,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.107701301574707,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026907946914434433,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.0547142028808594,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.02814572863280773,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.1026806831359863,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.0319778174161911,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.111511707305908,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.0307171531021595,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.080237865447998,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.028055021539330482,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.0788159370422363,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.028181064873933792,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.1019601821899414,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02825072593986988,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.1220169067382812,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.027759063988924026,
+ "learning_rate": 0.000303,
+ "loss": 3.120443344116211,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.028384150937199593,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.1227922439575195,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02828066237270832,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.090130090713501,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.027049461379647255,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.1284799575805664,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.027248091995716095,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.1222071647644043,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02682642824947834,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.0584917068481445,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.028671007603406906,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.1056923866271973,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.029719552025198936,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.1232962608337402,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02930845133960247,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.1489388942718506,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.027267523109912872,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.1068339347839355,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.027122870087623596,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.091658115386963,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02892552688717842,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.119953155517578,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.026107516139745712,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.1324267387390137,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.02834368869662285,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.1135330200195312,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.0268089696764946,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.1197123527526855,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.026696885004639626,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.132866859436035,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.026226269081234932,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.123291492462158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.025809111073613167,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.1176891326904297,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.026975948363542557,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.1067097187042236,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.025468360632658005,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.083657741546631,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.027642717584967613,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.1571693420410156,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.030620668083429337,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.073249340057373,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.1638689041137695,
+ "eval_runtime": 50.1889,
+ "eval_samples_per_second": 48.656,
+ "eval_steps_per_second": 1.534,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.03377586975693703,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 2.993783950805664,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.044740110635757446,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 2.95580792427063,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.05047239363193512,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 2.984628200531006,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.05149499326944351,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 2.955806016921997,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.05277741700410843,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 2.9356045722961426,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.060614872723817825,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 2.9882826805114746,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.06538370996713638,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.006455898284912,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.06005706638097763,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.0134925842285156,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.05942390486598015,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 2.9740724563598633,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06382409483194351,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.0069828033447266,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.06441724300384521,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 2.984314441680908,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.06459930539131165,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 2.9846179485321045,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05755109339952469,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 2.9764816761016846,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.046704988926649094,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 2.974026679992676,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0429978221654892,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 2.9861302375793457,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.04319468140602112,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 2.9621310234069824,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.038795970380306244,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.0014288425445557,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.03589440509676933,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 2.9826390743255615,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.03705231845378876,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 2.9580907821655273,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.03636796772480011,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.0007996559143066,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.03867757320404053,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 2.997044563293457,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.035327792167663574,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 2.996936798095703,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.032282304018735886,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.004767417907715,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.03375651687383652,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 2.9920854568481445,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.03619010001420975,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.0199923515319824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03363100066781044,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.034114122390747,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03060806356370449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 2.975198984146118,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.032294221222400665,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.015141010284424,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.034491732716560364,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 2.9978959560394287,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.03376961871981621,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.036426067352295,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.031041108071804047,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 2.998319625854492,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.031940486282110214,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.0469486713409424,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.031123239547014236,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.0072379112243652,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.030734606087207794,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.036997079849243,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.031764306128025055,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.0447278022766113,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.02990185283124447,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.034921646118164,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.030433475971221924,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.0206940174102783,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.030094126239418983,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.0418972969055176,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028662586584687233,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.0309152603149414,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.028792817145586014,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.036865234375,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.02997520938515663,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.067462205886841,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.029610155150294304,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.0205025672912598,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.028371484950184822,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.030869960784912,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.028344448655843735,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.0825698375701904,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.029161743819713593,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.0391931533813477,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.030113916844129562,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.042543411254883,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.03028416447341442,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.0566306114196777,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02867533080279827,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.0492074489593506,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.027289753779768944,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.0639188289642334,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02910415083169937,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.05964732170105,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02688678912818432,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.043264865875244,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02871597558259964,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.0865440368652344,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.02735147811472416,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.0280027389526367,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.027558112516999245,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.073667049407959,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.028590068221092224,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.0775787830352783,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.027421196922659874,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.048530101776123,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.02900906838476658,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.0512452125549316,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.028081346303224564,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.0729379653930664,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.02822948433458805,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.020914077758789,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.0274699404835701,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.038802146911621,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.029244130477309227,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.058251142501831,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.02987384982407093,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.1160788536071777,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.029393648728728294,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.0817503929138184,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.026882443577051163,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.07822322845459,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.02949383296072483,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.108980178833008,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.028918517753481865,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.064551830291748,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.027755869552493095,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.06553316116333,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.02706395648419857,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.068215847015381,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.02960599586367607,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.103351354598999,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.027660982683300972,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.0554938316345215,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02664663828909397,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.0832924842834473,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.032493703067302704,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.1057381629943848,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.198692321777344,
+ "eval_runtime": 50.5728,
+ "eval_samples_per_second": 48.287,
+ "eval_steps_per_second": 1.523,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.03448135778307915,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 2.902876615524292,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04302665591239929,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 2.9181900024414062,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.039954621344804764,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 2.917631149291992,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.03846871852874756,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 2.8900160789489746,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.0419776476919651,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 2.9141645431518555,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.044107574969530106,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 2.927809238433838,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.045430976897478104,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 2.8964736461639404,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.04940217733383179,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 2.9224932193756104,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.04955849424004555,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 2.9199090003967285,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.04267909377813339,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 2.9093246459960938,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.040362149477005005,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 2.9300074577331543,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.0392213836312294,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 2.887371063232422,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.03784675523638725,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 2.9503865242004395,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.03810061886906624,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 2.958479166030884,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.037828173488378525,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 2.9732666015625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.03713241219520569,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 2.9283528327941895,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.034065280109643936,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 2.9621665477752686,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.034690748900175095,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 2.9354934692382812,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.03508505970239639,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 2.943425178527832,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03737015649676323,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 2.9421677589416504,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036430537700653076,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 2.9525837898254395,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03370670601725578,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 2.9548637866973877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.03323587030172348,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 2.9914984703063965,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.035796184092760086,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 2.9237194061279297,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03700924664735794,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 2.948540449142456,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03579916059970856,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 2.9956037998199463,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.03507564589381218,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 2.9762418270111084,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.03425542265176773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 2.9770028591156006,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03175437077879906,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 2.9596753120422363,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.03424549847841263,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.0127992630004883,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03541243076324463,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.0040507316589355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03360338136553764,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 2.9928014278411865,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03273842856287956,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.000690460205078,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.032325662672519684,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.0052268505096436,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.029814070090651512,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 2.978851795196533,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.03210059925913811,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.0176095962524414,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.03372536972165108,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 2.993715286254883,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.03361409902572632,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 2.9708826541900635,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.03308112174272537,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.018354892730713,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.03435883671045303,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 2.959341526031494,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.03298819810152054,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.002148151397705,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.0329960361123085,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 2.9962527751922607,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.032080624252557755,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.008674144744873,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.030718278139829636,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 2.9645867347717285,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.03157243877649307,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.0405192375183105,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.03140097111463547,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.0006134510040283,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02908974327147007,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.013761043548584,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.02906658500432968,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.0001585483551025,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.030192526057362556,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 2.9960665702819824,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.030781449750065804,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 2.9812984466552734,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02945280261337757,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.0034046173095703,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.0288874302059412,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 2.9988417625427246,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.029345402494072914,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.0185203552246094,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.030031058937311172,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 2.99812388420105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.03058621473610401,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.010664463043213,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.028900042176246643,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.0187997817993164,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.030530644580721855,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.0028939247131348,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.029458772391080856,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.0392160415649414,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02845492772758007,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.044290542602539,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.03136971592903137,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.0263891220092773,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.029435086995363235,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 2.985365152359009,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02924281544983387,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.0277979373931885,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.03096146509051323,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.057739734649658,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.030985411256551743,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.010835647583008,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.028439484536647797,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.0429558753967285,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.028826508671045303,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.042165994644165,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.030978480353951454,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.030463218688965,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.03113269992172718,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.0347206592559814,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.029333986341953278,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.0340566635131836,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.028592009097337723,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.0445430278778076,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.029219510033726692,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.0399398803710938,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03413752093911171,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.0056731700897217,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.237446308135986,
+ "eval_runtime": 59.9078,
+ "eval_samples_per_second": 40.763,
+ "eval_steps_per_second": 1.285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.034361813217401505,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 2.8506712913513184,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.04355017840862274,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 2.875974655151367,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.04627153277397156,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 2.8806381225585938,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.046760041266679764,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 2.885575294494629,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.047849562019109726,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 2.8877172470092773,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.05132419615983963,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 2.8731319904327393,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.055483944714069366,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 2.895557403564453,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.05445433780550957,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 2.8901214599609375,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05026889964938164,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 2.8833224773406982,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.04411771148443222,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 2.9307775497436523,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.04263966530561447,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 2.879582166671753,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.043958500027656555,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 2.939608573913574,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04170852527022362,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 2.8954102993011475,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.04250946268439293,
+ "learning_rate": 0.000255486047794226,
+ "loss": 2.905449867248535,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.03957650065422058,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 2.902536392211914,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.04019796848297119,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 2.9027833938598633,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.04101439192891121,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 2.9148616790771484,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.039887234568595886,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 2.9088759422302246,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.03551582247018814,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 2.9005210399627686,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.03631351888179779,
+ "learning_rate": 0.000253907826333243,
+ "loss": 2.898406982421875,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.037652842700481415,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 2.918330192565918,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.036207735538482666,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 2.901122570037842,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.03508591651916504,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 2.9172091484069824,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.03406108543276787,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 2.8902015686035156,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.0352897085249424,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 2.8839168548583984,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.034633710980415344,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 2.9500584602355957,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03378494456410408,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 2.9374589920043945,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035448409616947174,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 2.882023811340332,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.0342826247215271,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 2.917515993118286,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.035327695310115814,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 2.911947727203369,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.03480467572808266,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 2.932415723800659,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.033533770591020584,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 2.958162546157837,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.03515322506427765,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 2.9077601432800293,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.03477735444903374,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 2.9195446968078613,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.03331083804368973,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 2.9775338172912598,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.03524516895413399,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 2.9310715198516846,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.03693820536136627,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 2.9650168418884277,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.03709941357374191,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 2.947303533554077,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.03669232130050659,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 2.982583522796631,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.034720368683338165,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 2.9623732566833496,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.03503575548529625,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 2.974088668823242,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.035023026168346405,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 2.9098939895629883,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.033050745725631714,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 2.9042611122131348,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.031803570687770844,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 2.985610008239746,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.03282999247312546,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 2.960763692855835,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.031893156468868256,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 2.9578733444213867,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.032003387808799744,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 2.9249801635742188,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.033047523349523544,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 2.9870409965515137,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.03174681216478348,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 2.973292350769043,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.03340791165828705,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 2.950939893722534,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.031847093254327774,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 2.952643871307373,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.032836299389600754,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.019166946411133,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.034089937806129456,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 2.964816093444824,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.031224727630615234,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.0118958950042725,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.031020160764455795,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 2.9807839393615723,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.030780989676713943,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 2.9778659343719482,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.030965285375714302,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 2.951444625854492,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.030757633969187737,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 2.9213666915893555,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.030994407832622528,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 2.947293996810913,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.03153432533144951,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 2.957968235015869,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.0315159447491169,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 2.995504140853882,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.031412918120622635,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 2.9789376258850098,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.03151796758174896,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 2.9787068367004395,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.03126099333167076,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.0285658836364746,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.03302513808012009,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.0173215866088867,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.032137684524059296,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 2.9977149963378906,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.031667932868003845,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 2.9881951808929443,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.03230196237564087,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 2.9845004081726074,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.03160998225212097,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 2.957639694213867,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.032368507236242294,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 2.969564914703369,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.031104926019906998,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 2.9951319694519043,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03458526358008385,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 2.955331563949585,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.268571376800537,
+ "eval_runtime": 50.4836,
+ "eval_samples_per_second": 48.372,
+ "eval_steps_per_second": 1.525,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.03699421510100365,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 2.850717544555664,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.0552988164126873,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 2.8399477005004883,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.057985689491033554,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 2.857229709625244,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.054917413741350174,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 2.8211488723754883,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.05402746424078941,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 2.8415608406066895,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.054649870842695236,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 2.8209891319274902,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.05316663533449173,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 2.848078966140747,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05129793658852577,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 2.8209495544433594,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.04771186783909798,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 2.848766565322876,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.04471662640571594,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 2.8405871391296387,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.04101414605975151,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 2.8075788021087646,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03750685229897499,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 2.8461761474609375,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.038734205067157745,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 2.81836199760437,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.042089853435754776,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 2.8583831787109375,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.043621618300676346,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 2.856410026550293,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03975158557295799,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 2.857800006866455,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.03914690762758255,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 2.8430817127227783,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03641999512910843,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 2.877098321914673,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.03628985583782196,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 2.8480634689331055,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.03707660734653473,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 2.8734331130981445,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.035252269357442856,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 2.853245258331299,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.03399394825100899,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 2.865544557571411,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.034946687519550323,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 2.8984780311584473,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.03414832055568695,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 2.8756165504455566,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.035122696310281754,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 2.836993932723999,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03457608446478844,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 2.8713862895965576,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.033898934721946716,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 2.8357291221618652,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.03419061005115509,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 2.9146008491516113,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.033601172268390656,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 2.9022369384765625,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.03507845103740692,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 2.898716688156128,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.03497530519962311,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 2.9049177169799805,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03447664901614189,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 2.8999228477478027,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.0327288918197155,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 2.8973376750946045,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.033647146075963974,
+ "learning_rate": 0.000231465389734324,
+ "loss": 2.907761335372925,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.03163779154419899,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 2.8606152534484863,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.03331096097826958,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 2.907522201538086,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.03455515205860138,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 2.8875679969787598,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.03523692488670349,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 2.9399242401123047,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.03430662304162979,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 2.920187473297119,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.03257483243942261,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 2.8856418132781982,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.03351624682545662,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 2.901949882507324,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.032566532492637634,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 2.9538679122924805,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.03294380381703377,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 2.9028542041778564,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.033534467220306396,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 2.920865058898926,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.03345954790711403,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 2.92004656791687,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.035632308572530746,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 2.9112181663513184,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.03495397791266441,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 2.9229912757873535,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.03374304622411728,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 2.9415764808654785,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.03485272079706192,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 2.9459822177886963,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.03648442402482033,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 2.930266857147217,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.03564995899796486,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 2.9442505836486816,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.03357839956879616,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 2.9406819343566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.03164827451109886,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 2.907163619995117,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.03588789328932762,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 2.919649839401245,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.035855360329151154,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 2.9178667068481445,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.03332711383700371,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 2.964325428009033,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.03329632803797722,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 2.920757293701172,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.036365825682878494,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 2.938229560852051,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.03682578727602959,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 2.92783522605896,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.03180156275629997,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 2.923375129699707,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.03338734805583954,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 2.909148693084717,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.03403759375214577,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 2.954238176345825,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.03311001881957054,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 2.9092135429382324,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.033959005028009415,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 2.962198257446289,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.03287528082728386,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 2.9339723587036133,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.031624604016542435,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 2.931535243988037,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.031244613230228424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 2.927706718444824,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.03359205275774002,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 2.950260877609253,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.03514735773205757,
+ "learning_rate": 0.00022244633283095,
+ "loss": 2.976957082748413,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.031232791021466255,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 2.9199209213256836,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.033515579998493195,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 2.9487085342407227,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03924408182501793,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 2.9397668838500977,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-2160/training_args.bin b/runs/baseline-lr6e-4/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2520/config.json b/runs/baseline-lr6e-4/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2520/generation_config.json b/runs/baseline-lr6e-4/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2520/model.safetensors b/runs/baseline-lr6e-4/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..695b829bab673bdedd5c5296b64ec9b096457b12
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0c7b2d41dfe46abb35ea17f96cb7828b4389ff06088a62e2700856d3de5bf7ce
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..d54c7b61b2dcec599ab0768a0b1f5d1daaea8051
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b6f125e45a219392e7d440726c27ffbf1d3a2bfd0ce74128009a4a6a4398818
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f6a767b5a760715c982d5f3b7abf7f7ae7024858
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77a1aaa8594be4aeac424d02802142f8409ed1e2897c1e46e3c37ed12b93e83c
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b0b2ce7324fa0e3d93e84f806452f72a932cb665
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8be9b03fd0264df00f58b952952d0e7adf408ae412c760c45b6919b81dd07768
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..809e415b980a88e74111733a8fbd497a2408afe5
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f5902b2719418cfd49abef69bf26be14b2bfe0841a35d7789b90886cf8ba0fb
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2520/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2520/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..631eac5f87cb8a54001350d3409cb9f1bfa3ffe2
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.136509418487549,
+ "eval_runtime": 49.9105,
+ "eval_samples_per_second": 48.928,
+ "eval_steps_per_second": 1.543,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.03253521770238876,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 2.996598243713379,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04506896063685417,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 2.9996728897094727,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.048917125910520554,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.01076602935791,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.04610349237918854,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 2.995270252227783,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.045683592557907104,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.03594970703125,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.05354170873761177,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.0199317932128906,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.06507625430822372,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.0495800971984863,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.07209842652082443,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.0578527450561523,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.07035882771015167,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.0229921340942383,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.05863689258694649,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.030324935913086,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.04508105292916298,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.0372116565704346,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04252060130238533,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.0351850986480713,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.044466983526945114,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.04567289352417,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.04447634890675545,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.0374679565429688,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.04119309037923813,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.0243847370147705,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03847199305891991,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.001368522644043,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03716685250401497,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.0389842987060547,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.03758823871612549,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.0392327308654785,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.039980918169021606,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.048888683319092,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.038987886160612106,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.048262119293213,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03671572729945183,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.0321078300476074,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.03564755246043205,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.005302906036377,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.033568378537893295,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.031449556350708,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03358025476336479,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.0719268321990967,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.033897947520017624,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.0156619548797607,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.030079921707510948,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.037581205368042,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02967393398284912,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.0666556358337402,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.031029149889945984,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.095435619354248,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.03093329258263111,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.062168598175049,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.030287278816103935,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.037875175476074,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.030194830149412155,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.072413921356201,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.029436185956001282,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.0657665729522705,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.028946757316589355,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.069164276123047,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.028802946209907532,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.0415639877319336,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02906205505132675,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.104550361633301,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.029995542019605637,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.068049430847168,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03007844276726246,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.0652952194213867,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02816668152809143,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.1197381019592285,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.02691139280796051,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.0562210083007812,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.02815496176481247,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.1038076877593994,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.028936119750142097,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.0725107192993164,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.03108699806034565,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.0953660011291504,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.030596446245908737,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.107701301574707,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026907946914434433,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.0547142028808594,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.02814572863280773,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.1026806831359863,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.0319778174161911,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.111511707305908,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.0307171531021595,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.080237865447998,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.028055021539330482,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.0788159370422363,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.028181064873933792,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.1019601821899414,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02825072593986988,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.1220169067382812,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.027759063988924026,
+ "learning_rate": 0.000303,
+ "loss": 3.120443344116211,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.028384150937199593,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.1227922439575195,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02828066237270832,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.090130090713501,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.027049461379647255,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.1284799575805664,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.027248091995716095,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.1222071647644043,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02682642824947834,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.0584917068481445,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.028671007603406906,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.1056923866271973,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.029719552025198936,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.1232962608337402,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02930845133960247,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.1489388942718506,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.027267523109912872,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.1068339347839355,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.027122870087623596,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.091658115386963,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02892552688717842,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.119953155517578,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.026107516139745712,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.1324267387390137,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.02834368869662285,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.1135330200195312,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.0268089696764946,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.1197123527526855,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.026696885004639626,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.132866859436035,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.026226269081234932,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.123291492462158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.025809111073613167,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.1176891326904297,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.026975948363542557,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.1067097187042236,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.025468360632658005,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.083657741546631,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.027642717584967613,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.1571693420410156,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.030620668083429337,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.073249340057373,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.1638689041137695,
+ "eval_runtime": 50.1889,
+ "eval_samples_per_second": 48.656,
+ "eval_steps_per_second": 1.534,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.03377586975693703,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 2.993783950805664,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.044740110635757446,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 2.95580792427063,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.05047239363193512,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 2.984628200531006,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.05149499326944351,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 2.955806016921997,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.05277741700410843,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 2.9356045722961426,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.060614872723817825,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 2.9882826805114746,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.06538370996713638,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.006455898284912,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.06005706638097763,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.0134925842285156,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.05942390486598015,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 2.9740724563598633,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06382409483194351,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.0069828033447266,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.06441724300384521,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 2.984314441680908,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.06459930539131165,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 2.9846179485321045,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05755109339952469,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 2.9764816761016846,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.046704988926649094,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 2.974026679992676,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0429978221654892,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 2.9861302375793457,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.04319468140602112,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 2.9621310234069824,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.038795970380306244,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.0014288425445557,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.03589440509676933,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 2.9826390743255615,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.03705231845378876,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 2.9580907821655273,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.03636796772480011,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.0007996559143066,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.03867757320404053,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 2.997044563293457,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.035327792167663574,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 2.996936798095703,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.032282304018735886,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.004767417907715,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.03375651687383652,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 2.9920854568481445,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.03619010001420975,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.0199923515319824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03363100066781044,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.034114122390747,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03060806356370449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 2.975198984146118,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.032294221222400665,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.015141010284424,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.034491732716560364,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 2.9978959560394287,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.03376961871981621,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.036426067352295,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.031041108071804047,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 2.998319625854492,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.031940486282110214,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.0469486713409424,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.031123239547014236,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.0072379112243652,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.030734606087207794,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.036997079849243,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.031764306128025055,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.0447278022766113,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.02990185283124447,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.034921646118164,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.030433475971221924,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.0206940174102783,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.030094126239418983,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.0418972969055176,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028662586584687233,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.0309152603149414,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.028792817145586014,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.036865234375,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.02997520938515663,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.067462205886841,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.029610155150294304,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.0205025672912598,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.028371484950184822,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.030869960784912,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.028344448655843735,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.0825698375701904,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.029161743819713593,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.0391931533813477,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.030113916844129562,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.042543411254883,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.03028416447341442,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.0566306114196777,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02867533080279827,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.0492074489593506,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.027289753779768944,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.0639188289642334,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02910415083169937,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.05964732170105,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02688678912818432,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.043264865875244,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02871597558259964,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.0865440368652344,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.02735147811472416,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.0280027389526367,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.027558112516999245,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.073667049407959,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.028590068221092224,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.0775787830352783,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.027421196922659874,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.048530101776123,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.02900906838476658,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.0512452125549316,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.028081346303224564,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.0729379653930664,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.02822948433458805,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.020914077758789,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.0274699404835701,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.038802146911621,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.029244130477309227,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.058251142501831,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.02987384982407093,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.1160788536071777,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.029393648728728294,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.0817503929138184,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.026882443577051163,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.07822322845459,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.02949383296072483,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.108980178833008,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.028918517753481865,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.064551830291748,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.027755869552493095,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.06553316116333,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.02706395648419857,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.068215847015381,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.02960599586367607,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.103351354598999,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.027660982683300972,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.0554938316345215,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02664663828909397,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.0832924842834473,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.032493703067302704,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.1057381629943848,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.198692321777344,
+ "eval_runtime": 50.5728,
+ "eval_samples_per_second": 48.287,
+ "eval_steps_per_second": 1.523,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.03448135778307915,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 2.902876615524292,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04302665591239929,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 2.9181900024414062,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.039954621344804764,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 2.917631149291992,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.03846871852874756,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 2.8900160789489746,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.0419776476919651,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 2.9141645431518555,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.044107574969530106,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 2.927809238433838,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.045430976897478104,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 2.8964736461639404,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.04940217733383179,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 2.9224932193756104,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.04955849424004555,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 2.9199090003967285,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.04267909377813339,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 2.9093246459960938,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.040362149477005005,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 2.9300074577331543,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.0392213836312294,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 2.887371063232422,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.03784675523638725,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 2.9503865242004395,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.03810061886906624,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 2.958479166030884,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.037828173488378525,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 2.9732666015625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.03713241219520569,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 2.9283528327941895,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.034065280109643936,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 2.9621665477752686,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.034690748900175095,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 2.9354934692382812,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.03508505970239639,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 2.943425178527832,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03737015649676323,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 2.9421677589416504,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036430537700653076,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 2.9525837898254395,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03370670601725578,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 2.9548637866973877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.03323587030172348,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 2.9914984703063965,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.035796184092760086,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 2.9237194061279297,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03700924664735794,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 2.948540449142456,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03579916059970856,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 2.9956037998199463,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.03507564589381218,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 2.9762418270111084,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.03425542265176773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 2.9770028591156006,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03175437077879906,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 2.9596753120422363,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.03424549847841263,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.0127992630004883,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03541243076324463,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.0040507316589355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03360338136553764,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 2.9928014278411865,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03273842856287956,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.000690460205078,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.032325662672519684,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.0052268505096436,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.029814070090651512,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 2.978851795196533,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.03210059925913811,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.0176095962524414,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.03372536972165108,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 2.993715286254883,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.03361409902572632,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 2.9708826541900635,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.03308112174272537,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.018354892730713,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.03435883671045303,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 2.959341526031494,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.03298819810152054,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.002148151397705,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.0329960361123085,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 2.9962527751922607,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.032080624252557755,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.008674144744873,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.030718278139829636,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 2.9645867347717285,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.03157243877649307,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.0405192375183105,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.03140097111463547,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.0006134510040283,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02908974327147007,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.013761043548584,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.02906658500432968,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.0001585483551025,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.030192526057362556,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 2.9960665702819824,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.030781449750065804,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 2.9812984466552734,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02945280261337757,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.0034046173095703,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.0288874302059412,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 2.9988417625427246,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.029345402494072914,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.0185203552246094,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.030031058937311172,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 2.99812388420105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.03058621473610401,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.010664463043213,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.028900042176246643,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.0187997817993164,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.030530644580721855,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.0028939247131348,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.029458772391080856,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.0392160415649414,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02845492772758007,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.044290542602539,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.03136971592903137,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.0263891220092773,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.029435086995363235,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 2.985365152359009,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02924281544983387,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.0277979373931885,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.03096146509051323,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.057739734649658,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.030985411256551743,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.010835647583008,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.028439484536647797,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.0429558753967285,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.028826508671045303,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.042165994644165,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.030978480353951454,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.030463218688965,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.03113269992172718,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.0347206592559814,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.029333986341953278,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.0340566635131836,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.028592009097337723,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.0445430278778076,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.029219510033726692,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.0399398803710938,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03413752093911171,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.0056731700897217,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.237446308135986,
+ "eval_runtime": 59.9078,
+ "eval_samples_per_second": 40.763,
+ "eval_steps_per_second": 1.285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.034361813217401505,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 2.8506712913513184,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.04355017840862274,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 2.875974655151367,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.04627153277397156,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 2.8806381225585938,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.046760041266679764,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 2.885575294494629,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.047849562019109726,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 2.8877172470092773,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.05132419615983963,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 2.8731319904327393,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.055483944714069366,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 2.895557403564453,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.05445433780550957,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 2.8901214599609375,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05026889964938164,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 2.8833224773406982,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.04411771148443222,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 2.9307775497436523,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.04263966530561447,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 2.879582166671753,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.043958500027656555,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 2.939608573913574,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04170852527022362,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 2.8954102993011475,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.04250946268439293,
+ "learning_rate": 0.000255486047794226,
+ "loss": 2.905449867248535,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.03957650065422058,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 2.902536392211914,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.04019796848297119,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 2.9027833938598633,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.04101439192891121,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 2.9148616790771484,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.039887234568595886,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 2.9088759422302246,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.03551582247018814,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 2.9005210399627686,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.03631351888179779,
+ "learning_rate": 0.000253907826333243,
+ "loss": 2.898406982421875,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.037652842700481415,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 2.918330192565918,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.036207735538482666,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 2.901122570037842,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.03508591651916504,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 2.9172091484069824,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.03406108543276787,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 2.8902015686035156,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.0352897085249424,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 2.8839168548583984,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.034633710980415344,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 2.9500584602355957,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03378494456410408,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 2.9374589920043945,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035448409616947174,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 2.882023811340332,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.0342826247215271,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 2.917515993118286,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.035327695310115814,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 2.911947727203369,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.03480467572808266,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 2.932415723800659,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.033533770591020584,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 2.958162546157837,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.03515322506427765,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 2.9077601432800293,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.03477735444903374,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 2.9195446968078613,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.03331083804368973,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 2.9775338172912598,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.03524516895413399,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 2.9310715198516846,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.03693820536136627,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 2.9650168418884277,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.03709941357374191,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 2.947303533554077,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.03669232130050659,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 2.982583522796631,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.034720368683338165,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 2.9623732566833496,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.03503575548529625,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 2.974088668823242,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.035023026168346405,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 2.9098939895629883,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.033050745725631714,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 2.9042611122131348,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.031803570687770844,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 2.985610008239746,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.03282999247312546,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 2.960763692855835,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.031893156468868256,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 2.9578733444213867,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.032003387808799744,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 2.9249801635742188,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.033047523349523544,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 2.9870409965515137,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.03174681216478348,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 2.973292350769043,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.03340791165828705,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 2.950939893722534,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.031847093254327774,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 2.952643871307373,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.032836299389600754,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.019166946411133,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.034089937806129456,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 2.964816093444824,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.031224727630615234,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.0118958950042725,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.031020160764455795,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 2.9807839393615723,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.030780989676713943,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 2.9778659343719482,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.030965285375714302,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 2.951444625854492,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.030757633969187737,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 2.9213666915893555,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.030994407832622528,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 2.947293996810913,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.03153432533144951,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 2.957968235015869,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.0315159447491169,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 2.995504140853882,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.031412918120622635,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 2.9789376258850098,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.03151796758174896,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 2.9787068367004395,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.03126099333167076,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.0285658836364746,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.03302513808012009,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.0173215866088867,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.032137684524059296,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 2.9977149963378906,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.031667932868003845,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 2.9881951808929443,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.03230196237564087,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 2.9845004081726074,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.03160998225212097,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 2.957639694213867,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.032368507236242294,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 2.969564914703369,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.031104926019906998,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 2.9951319694519043,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03458526358008385,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 2.955331563949585,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.268571376800537,
+ "eval_runtime": 50.4836,
+ "eval_samples_per_second": 48.372,
+ "eval_steps_per_second": 1.525,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.03699421510100365,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 2.850717544555664,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.0552988164126873,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 2.8399477005004883,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.057985689491033554,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 2.857229709625244,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.054917413741350174,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 2.8211488723754883,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.05402746424078941,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 2.8415608406066895,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.054649870842695236,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 2.8209891319274902,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.05316663533449173,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 2.848078966140747,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05129793658852577,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 2.8209495544433594,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.04771186783909798,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 2.848766565322876,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.04471662640571594,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 2.8405871391296387,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.04101414605975151,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 2.8075788021087646,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03750685229897499,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 2.8461761474609375,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.038734205067157745,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 2.81836199760437,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.042089853435754776,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 2.8583831787109375,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.043621618300676346,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 2.856410026550293,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03975158557295799,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 2.857800006866455,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.03914690762758255,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 2.8430817127227783,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03641999512910843,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 2.877098321914673,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.03628985583782196,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 2.8480634689331055,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.03707660734653473,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 2.8734331130981445,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.035252269357442856,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 2.853245258331299,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.03399394825100899,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 2.865544557571411,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.034946687519550323,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 2.8984780311584473,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.03414832055568695,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 2.8756165504455566,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.035122696310281754,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 2.836993932723999,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03457608446478844,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 2.8713862895965576,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.033898934721946716,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 2.8357291221618652,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.03419061005115509,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 2.9146008491516113,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.033601172268390656,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 2.9022369384765625,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.03507845103740692,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 2.898716688156128,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.03497530519962311,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 2.9049177169799805,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03447664901614189,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 2.8999228477478027,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.0327288918197155,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 2.8973376750946045,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.033647146075963974,
+ "learning_rate": 0.000231465389734324,
+ "loss": 2.907761335372925,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.03163779154419899,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 2.8606152534484863,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.03331096097826958,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 2.907522201538086,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.03455515205860138,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 2.8875679969787598,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.03523692488670349,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 2.9399242401123047,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.03430662304162979,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 2.920187473297119,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.03257483243942261,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 2.8856418132781982,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.03351624682545662,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 2.901949882507324,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.032566532492637634,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 2.9538679122924805,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.03294380381703377,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 2.9028542041778564,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.033534467220306396,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 2.920865058898926,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.03345954790711403,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 2.92004656791687,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.035632308572530746,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 2.9112181663513184,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.03495397791266441,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 2.9229912757873535,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.03374304622411728,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 2.9415764808654785,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.03485272079706192,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 2.9459822177886963,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.03648442402482033,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 2.930266857147217,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.03564995899796486,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 2.9442505836486816,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.03357839956879616,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 2.9406819343566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.03164827451109886,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 2.907163619995117,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.03588789328932762,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 2.919649839401245,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.035855360329151154,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 2.9178667068481445,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.03332711383700371,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 2.964325428009033,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.03329632803797722,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 2.920757293701172,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.036365825682878494,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 2.938229560852051,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.03682578727602959,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 2.92783522605896,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.03180156275629997,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 2.923375129699707,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.03338734805583954,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 2.909148693084717,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.03403759375214577,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 2.954238176345825,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.03311001881957054,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 2.9092135429382324,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.033959005028009415,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 2.962198257446289,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.03287528082728386,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 2.9339723587036133,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.031624604016542435,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 2.931535243988037,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.031244613230228424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 2.927706718444824,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.03359205275774002,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 2.950260877609253,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.03514735773205757,
+ "learning_rate": 0.00022244633283095,
+ "loss": 2.976957082748413,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.031232791021466255,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 2.9199209213256836,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.033515579998493195,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 2.9487085342407227,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03924408182501793,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 2.9397668838500977,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.309950351715088,
+ "eval_runtime": 50.2121,
+ "eval_samples_per_second": 48.634,
+ "eval_steps_per_second": 1.533,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03797328472137451,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 2.7964625358581543,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05182477831840515,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 2.7840116024017334,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05243600532412529,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 2.7720894813537598,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.049961578100919724,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 2.7968246936798096,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.05004527047276497,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 2.819459915161133,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05132897198200226,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 2.8177990913391113,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.04748285934329033,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 2.7943527698516846,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.04613078758120537,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 2.7934889793395996,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.04528726637363434,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 2.8120880126953125,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.04460810869932175,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 2.8086094856262207,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.04940483346581459,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 2.783414840698242,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.04755563288927078,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 2.786266326904297,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.039832018315792084,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 2.8260536193847656,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.04122614488005638,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 2.8158113956451416,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.04259834438562393,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 2.8159971237182617,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.0441596657037735,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 2.8201799392700195,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.044361185282468796,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 2.809572219848633,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.044445883482694626,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 2.820591926574707,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.041293222457170486,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 2.8170418739318848,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.04198037087917328,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 2.8230514526367188,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.040943801403045654,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 2.8785529136657715,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.04062051326036453,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 2.8197708129882812,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.04014413058757782,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 2.845383644104004,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.03760908544063568,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 2.859769344329834,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.03789070248603821,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 2.8416380882263184,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.040182486176490784,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 2.830772876739502,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04032180830836296,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 2.820589542388916,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.042562272399663925,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 2.8250768184661865,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.039164844900369644,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 2.8789186477661133,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.036587074398994446,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 2.8665075302124023,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03641028329730034,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 2.8668501377105713,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.03790752962231636,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 2.831110954284668,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03793574497103691,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 2.859065055847168,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.03824981302022934,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 2.894343852996826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.038279470056295395,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 2.849274158477783,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.036916445940732956,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 2.822936534881592,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.035255685448646545,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 2.9116382598876953,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.03675640746951103,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 2.8434290885925293,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.03706246614456177,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 2.8097033500671387,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.03486589714884758,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 2.8667774200439453,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.034129124134778976,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 2.8889684677124023,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.035698726773262024,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 2.8895792961120605,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.03454627841711044,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 2.863913059234619,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.032894328236579895,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 2.844942569732666,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.03542465344071388,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 2.868215799331665,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.03403910622000694,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 2.867429256439209,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.03446296975016594,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 2.860053300857544,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.03430024906992912,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 2.8507087230682373,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.03218062222003937,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 2.871540069580078,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.033100277185440063,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 2.8558998107910156,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.03332056477665901,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 2.8602569103240967,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.03521702438592911,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 2.856260299682617,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.03411679342389107,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 2.869317054748535,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.03389536961913109,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 2.8770289421081543,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.03530183807015419,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 2.88539457321167,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.03610125556588173,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 2.8895177841186523,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.0340193547308445,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 2.888007164001465,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.03255763277411461,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 2.8962326049804688,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.036177389323711395,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 2.87697172164917,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.034373488277196884,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 2.9129204750061035,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.03416284918785095,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 2.8778076171875,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.03269495069980621,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 2.9018735885620117,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.0355791412293911,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 2.8736732006073,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.03452740237116814,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 2.9138574600219727,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.03226732090115547,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 2.8750157356262207,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.03449986129999161,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 2.8816564083099365,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.033824801445007324,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 2.8952057361602783,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.034431736916303635,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 2.92415452003479,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.032803770154714584,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 2.9336395263671875,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.03375089541077614,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 2.885989189147949,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.03369738161563873,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 2.901681900024414,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03740214183926582,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 2.9028968811035156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.352105140686035,
+ "eval_runtime": 50.4518,
+ "eval_samples_per_second": 48.403,
+ "eval_steps_per_second": 1.526,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03719676285982132,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 2.7506203651428223,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.04799883812665939,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 2.7436680793762207,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.04992787167429924,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 2.785435199737549,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.04670284688472748,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 2.765993118286133,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.04460717365145683,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 2.7355451583862305,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.04692559316754341,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 2.753324508666992,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.043969348073005676,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 2.739989757537842,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.0410359688103199,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 2.7363996505737305,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.04173228144645691,
+ "learning_rate": 0.000201141724176723,
+ "loss": 2.751185178756714,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.04204905033111572,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 2.770327091217041,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.040645647794008255,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 2.7410969734191895,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.04042249917984009,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 2.771155834197998,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 2.767975330352783,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.039667751640081406,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 2.761502265930176,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.04095076397061348,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 2.784851551055908,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.0422712042927742,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 2.7631585597991943,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.04403155669569969,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 2.757833480834961,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.04208405315876007,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 2.7453598976135254,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.03917219862341881,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 2.7579214572906494,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03793885558843613,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 2.7856955528259277,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.04241294413805008,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 2.8095250129699707,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.043874748051166534,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 2.784102439880371,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.043710801750421524,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 2.7893218994140625,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.03927089646458626,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 2.772472620010376,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.037578973919153214,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 2.791860580444336,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.03958947956562042,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 2.80277156829834,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.041760701686143875,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 2.810274600982666,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.03933396562933922,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 2.7954909801483154,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03693462163209915,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 2.8056864738464355,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.036877796053886414,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 2.8361990451812744,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.03616270422935486,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 2.8347058296203613,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.036112796515226364,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 2.805556535720825,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.039925526827573776,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 2.8245959281921387,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.038287658244371414,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 2.805874824523926,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.03738972172141075,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 2.800257682800293,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03568391501903534,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 2.815108299255371,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03511364385485649,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 2.79067325592041,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.035567332059144974,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 2.8227243423461914,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.03635167330503464,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 2.7965641021728516,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.038816045969724655,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 2.7981600761413574,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.03729109838604927,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 2.815075159072876,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.03504854813218117,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 2.8329830169677734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.036570195108652115,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 2.821903944015503,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.035399142652750015,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 2.8031158447265625,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03458433970808983,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 2.804354190826416,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.0365789458155632,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 2.8451900482177734,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.03705596551299095,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 2.861931085586548,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03605107590556145,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 2.8246450424194336,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.03616880625486374,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 2.832051992416382,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.03935617581009865,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 2.8594398498535156,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.038325585424900055,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 2.837932825088501,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.03649872541427612,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 2.864701271057129,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.036109115928411484,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 2.8517560958862305,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.03894130885601044,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 2.8157949447631836,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.038372039794921875,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 2.8479137420654297,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.03452896699309349,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 2.8600716590881348,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.03632326424121857,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 2.8263001441955566,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.03763658180832863,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 2.8175363540649414,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.03593018278479576,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 2.828946113586426,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.03475581854581833,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 2.856628894805908,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.03520223870873451,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 2.870553970336914,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.035959191620349884,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 2.8436391353607178,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.03600265458226204,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 2.86441969871521,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.03651043772697449,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 2.8605189323425293,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.03449200838804245,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 2.8725595474243164,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.03539549931883812,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 2.8368237018585205,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.03668821230530739,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 2.882417917251587,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.03392226621508598,
+ "learning_rate": 0.000186516746349841,
+ "loss": 2.8854141235351562,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.0369710847735405,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 2.885317325592041,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.03497837111353874,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 2.880661964416504,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.03550030663609505,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 2.833157539367676,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03926094248890877,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 2.8475146293640137,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.394933223724365,
+ "eval_runtime": 50.6913,
+ "eval_samples_per_second": 48.174,
+ "eval_steps_per_second": 1.519,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.043481744825839996,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 2.7305550575256348,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.053153567016124725,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 2.717087984085083,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.052458375692367554,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.686765670776367,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.04814518243074417,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 2.72470760345459,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04681197181344032,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.693404197692871,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.04720525071024895,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.6897501945495605,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.047475386410951614,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 2.741422176361084,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.049529723823070526,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.6869325637817383,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.04822194576263428,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.6873905658721924,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.04628577083349228,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 2.729592800140381,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.04367085173726082,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 2.7228331565856934,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.04440176114439964,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 2.7436013221740723,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.044516388326883316,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 2.7400388717651367,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0438699945807457,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.6777939796447754,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.04249744489789009,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.701598882675171,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.038822516798973083,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 2.732938289642334,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.0413549467921257,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 2.7495951652526855,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.04422483593225479,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 2.7503349781036377,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.04198349639773369,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 2.7643909454345703,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.041043829172849655,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 2.7135918140411377,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03967289999127388,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.7103633880615234,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.04005147144198418,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 2.748504161834717,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.04070824012160301,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.6916699409484863,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04390577971935272,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 2.750455379486084,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.043122485280036926,
+ "learning_rate": 0.000179445406945268,
+ "loss": 2.7423312664031982,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03647756204009056,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 2.7361197471618652,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.03861029073596001,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 2.775204658508301,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04231081157922745,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 2.7497947216033936,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.04208704084157944,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 2.7545595169067383,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.03729049488902092,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 2.7283387184143066,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.0379655547440052,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 2.78347110748291,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04115770384669304,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 2.7719345092773438,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.04086964204907417,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 2.796412944793701,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.03825974091887474,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 2.7443013191223145,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.036880265921354294,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 2.7366080284118652,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03627486899495125,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 2.8126893043518066,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03680504858493805,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 2.7860169410705566,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.037588510662317276,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 2.784741163253784,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.036638807505369186,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 2.787360191345215,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.033687569200992584,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 2.7557525634765625,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03601320460438728,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 2.750558853149414,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.036490608006715775,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 2.7603161334991455,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03581147640943527,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 2.8177523612976074,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03664109483361244,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 2.773531198501587,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03521975129842758,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 2.802985906600952,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03567864000797272,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 2.7715282440185547,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.03634249418973923,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 2.783874988555908,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03536146879196167,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 2.8035964965820312,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.036448799073696136,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 2.787716865539551,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.036559030413627625,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 2.778810501098633,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03604830801486969,
+ "learning_rate": 0.000173176617304673,
+ "loss": 2.782071113586426,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03640980273485184,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 2.820803642272949,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.034831587225198746,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 2.8025026321411133,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.03584841638803482,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 2.8057172298431396,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.035353146493434906,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 2.821279525756836,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03484848141670227,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 2.817362070083618,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.0363977774977684,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 2.798384666442871,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03677841275930405,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 2.8462960720062256,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.033444907516241074,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 2.8119957447052,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.0360054150223732,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 2.7947516441345215,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.036171745508909225,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 2.815831184387207,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.03641003742814064,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 2.808131694793701,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.03541484475135803,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 2.8605761528015137,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.03575175255537033,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 2.840233564376831,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.036277081817388535,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 2.7937965393066406,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.03619410842657089,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 2.850496768951416,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.03414769843220711,
+ "learning_rate": 0.00016935382741164,
+ "loss": 2.8395838737487793,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.037818793207407,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 2.8413162231445312,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.03481597453355789,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 2.8057632446289062,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.03372214362025261,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 2.806955575942993,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.035471074283123016,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 2.8164381980895996,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.040505655109882355,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 2.821949005126953,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.442426681518555,
+ "eval_runtime": 50.5463,
+ "eval_samples_per_second": 48.312,
+ "eval_steps_per_second": 1.523,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.040360890328884125,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.6719675064086914,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.047384459525346756,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.631821632385254,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.041619714349508286,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.6519036293029785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.04094138368964195,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.656247615814209,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.04390440508723259,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 2.689321994781494,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.042488861829042435,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.661299705505371,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.04079974815249443,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 2.7099952697753906,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.040120258927345276,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.672731399536133,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.045239564031362534,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.6671290397644043,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.04565443471074104,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.688469886779785,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.04325062781572342,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.6866841316223145,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.042317189276218414,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.6908586025238037,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.04298596829175949,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.6890554428100586,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.04236339032649994,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.6589977741241455,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.04177287593483925,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.6802594661712646,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.04414846748113632,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 2.7234978675842285,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.046593230217695236,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.7059357166290283,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.04565853998064995,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.7076125144958496,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.04481668397784233,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.705566644668579,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.04029017314314842,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.6801295280456543,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.03784259408712387,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 2.718494176864624,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.03952431306242943,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.692405939102173,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.0413871668279171,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.7163681983947754,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.04014147073030472,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 2.7119476795196533,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.039213456213474274,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.702211380004883,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.03716482222080231,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.7004847526550293,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.03758992999792099,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 2.759352445602417,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.04070932790637016,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.7059261798858643,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03782462328672409,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.7063827514648438,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.038561753928661346,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.702890396118164,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.040485069155693054,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 2.728665351867676,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.04195099696516991,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 2.739861488342285,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.04205700010061264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 2.732515811920166,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.037712372839450836,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.7063097953796387,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03902430832386017,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 2.7210097312927246,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0451044961810112,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 2.7702722549438477,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.04305797442793846,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 2.7315967082977295,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.037595830857753754,
+ "learning_rate": 0.000159218843594243,
+ "loss": 2.755042791366577,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03781610727310181,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.6963937282562256,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.04262562468647957,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 2.739180088043213,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.03966844081878662,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 2.731743335723877,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.03667006641626358,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 2.768737316131592,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.04043777659535408,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 2.744929313659668,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.044052302837371826,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 2.771634578704834,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.03826981410384178,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 2.7353196144104004,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03758488968014717,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 2.7528347969055176,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.04268691688776016,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 2.7540318965911865,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.041325002908706665,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 2.7647171020507812,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.037344686686992645,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 2.76705265045166,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.042450353503227234,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.7144453525543213,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.04224000498652458,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 2.759082794189453,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.038104742765426636,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 2.7497215270996094,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03811940923333168,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 2.7790403366088867,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.041614845395088196,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 2.7288498878479004,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.03948371857404709,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 2.748359203338623,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.03905073553323746,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 2.7725560665130615,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.041112206876277924,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 2.762186050415039,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03879137709736824,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 2.734889030456543,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.03886166214942932,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 2.8005852699279785,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.04294531047344208,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 2.7776103019714355,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.03838416188955307,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 2.761643409729004,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.038427963852882385,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 2.7586638927459717,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.04066694155335426,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 2.760824680328369,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.037848424166440964,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 2.778289318084717,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.03844791650772095,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 2.749744415283203,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.039958324283361435,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 2.7985734939575195,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03874100372195244,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 2.774866819381714,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.036840081214904785,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 2.805913209915161,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.03725936636328697,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 2.781439781188965,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.04035738855600357,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 2.758686065673828,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.04106197506189346,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 2.771879196166992,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.042643509805202484,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 2.7765140533447266,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.4830546379089355,
+ "eval_runtime": 50.4391,
+ "eval_samples_per_second": 48.415,
+ "eval_steps_per_second": 1.527,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.04445832222700119,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.6106953620910645,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.05079226940870285,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.6472721099853516,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.04819434881210327,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.629481792449951,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.047417085617780685,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.6317343711853027,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.04363427683711052,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.6411972045898438,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.04454582557082176,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.6416287422180176,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.04812787473201752,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.6330764293670654,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.04939486086368561,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.6355319023132324,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.043980687856674194,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.666226863861084,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.040836285799741745,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.6286075115203857,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.042456481605768204,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.6513962745666504,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.042755771428346634,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.662870407104492,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.04120723903179169,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.6305460929870605,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03987514600157738,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.593961715698242,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.038635555654764175,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.6607577800750732,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.04158136621117592,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.6735172271728516,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.03990459814667702,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.6527466773986816,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.04141661524772644,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.6488356590270996,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.041069503873586655,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.664846897125244,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.041106708347797394,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.661078691482544,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.04089801013469696,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.671553134918213,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.042857419699430466,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.631235361099243,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.040352705866098404,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.675701141357422,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.03929511830210686,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.682508945465088,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.03924228623509407,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.708465337753296,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.04071180149912834,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.643385887145996,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.0444309264421463,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.700355291366577,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04204278439283371,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.6900219917297363,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.04269995540380478,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.6792659759521484,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03987446427345276,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.6759490966796875,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.040391139686107635,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.673100471496582,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.044392503798007965,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.7062530517578125,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04163298010826111,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.6927719116210938,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.03959506377577782,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.675417423248291,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.04166583716869354,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.6413064002990723,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.04037674888968468,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 2.7350051403045654,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03836590051651001,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.6984071731567383,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.039869897067546844,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.690366268157959,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.041240107268095016,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.681495189666748,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03860987350344658,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.665367603302002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03899926319718361,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.700815200805664,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03890778869390488,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 2.7328848838806152,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03876316174864769,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.68580961227417,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03872651979327202,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 2.734034776687622,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.04012880101799965,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.700725555419922,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.038113679736852646,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.6887927055358887,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03834610804915428,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 2.7499499320983887,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03771091252565384,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 2.720296859741211,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.03800208866596222,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 2.7197604179382324,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.03881968930363655,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.7176647186279297,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.0374908410012722,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.690718173980713,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.038332752883434296,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.715179920196533,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.038576558232307434,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 2.746676445007324,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.0400109626352787,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.703824043273926,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.037498198449611664,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 2.716090679168701,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.03695759177207947,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.713515520095825,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.03913547471165657,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 2.7210280895233154,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.03884539380669594,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.7117247581481934,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03601778298616409,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 2.7416625022888184,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.037836555391550064,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 2.734532594680786,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03748112544417381,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 2.731274127960205,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.03544784337282181,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 2.736314296722412,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.03774402663111687,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.7095437049865723,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.038037873804569244,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 2.756585121154785,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.03488243371248245,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 2.7442431449890137,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03599962964653969,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.707491397857666,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.03502672165632248,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 2.716686248779297,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.036128927022218704,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.7225708961486816,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.03735365718603134,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 2.7557473182678223,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.035510897636413574,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 2.7392797470092773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03622622787952423,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.7216439247131348,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.04298526421189308,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.7173662185668945,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-2520/training_args.bin b/runs/baseline-lr6e-4/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2880/config.json b/runs/baseline-lr6e-4/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2880/generation_config.json b/runs/baseline-lr6e-4/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2880/model.safetensors b/runs/baseline-lr6e-4/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0f51e7cc7464a2d56d9d00a8ff49941dfa3fb5d8
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:031d560beb9774f7ff8730b22685bd820273554d2946b0beb24f6b2dce0e0a3e
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e9ccbae6a98080c061680be714599e68445d0f75
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1bd77b23d370aa6dd365d6852d30c3f22865d07ba1baa59edc727f58d19c3900
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b73f9a380e4e9c61520ae0674c9453be2b007f8d
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:19e0f78f2d9435829a3e127bfda2ca14f3245c5620079efefde656536bbe279e
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c80ff79c801a37a1192dfdb25ad4404ef9b73aa
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ff567f23d2e2493cacddea05b5da8eee7e39fe5f45b9a2a98aa6a743f71addc
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f1b2d6bb8ce3cef13aa84e428e5db83abeeff7b5
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6c45747ad72424e6ab5eef3447cbd13933161ee71d5ad9aaac15ca345390629c
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2880/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-2880/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..bdf7e8f1cf0a1dd909c46e78f92d7453120ed826
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.136509418487549,
+ "eval_runtime": 49.9105,
+ "eval_samples_per_second": 48.928,
+ "eval_steps_per_second": 1.543,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.03253521770238876,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 2.996598243713379,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04506896063685417,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 2.9996728897094727,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.048917125910520554,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.01076602935791,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.04610349237918854,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 2.995270252227783,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.045683592557907104,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.03594970703125,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.05354170873761177,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.0199317932128906,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.06507625430822372,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.0495800971984863,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.07209842652082443,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.0578527450561523,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.07035882771015167,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.0229921340942383,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.05863689258694649,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.030324935913086,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.04508105292916298,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.0372116565704346,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04252060130238533,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.0351850986480713,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.044466983526945114,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.04567289352417,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.04447634890675545,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.0374679565429688,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.04119309037923813,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.0243847370147705,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03847199305891991,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.001368522644043,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03716685250401497,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.0389842987060547,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.03758823871612549,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.0392327308654785,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.039980918169021606,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.048888683319092,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.038987886160612106,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.048262119293213,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03671572729945183,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.0321078300476074,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.03564755246043205,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.005302906036377,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.033568378537893295,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.031449556350708,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03358025476336479,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.0719268321990967,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.033897947520017624,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.0156619548797607,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.030079921707510948,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.037581205368042,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02967393398284912,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.0666556358337402,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.031029149889945984,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.095435619354248,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.03093329258263111,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.062168598175049,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.030287278816103935,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.037875175476074,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.030194830149412155,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.072413921356201,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.029436185956001282,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.0657665729522705,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.028946757316589355,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.069164276123047,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.028802946209907532,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.0415639877319336,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02906205505132675,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.104550361633301,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.029995542019605637,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.068049430847168,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03007844276726246,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.0652952194213867,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02816668152809143,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.1197381019592285,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.02691139280796051,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.0562210083007812,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.02815496176481247,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.1038076877593994,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.028936119750142097,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.0725107192993164,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.03108699806034565,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.0953660011291504,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.030596446245908737,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.107701301574707,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026907946914434433,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.0547142028808594,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.02814572863280773,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.1026806831359863,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.0319778174161911,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.111511707305908,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.0307171531021595,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.080237865447998,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.028055021539330482,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.0788159370422363,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.028181064873933792,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.1019601821899414,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02825072593986988,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.1220169067382812,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.027759063988924026,
+ "learning_rate": 0.000303,
+ "loss": 3.120443344116211,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.028384150937199593,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.1227922439575195,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02828066237270832,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.090130090713501,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.027049461379647255,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.1284799575805664,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.027248091995716095,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.1222071647644043,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02682642824947834,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.0584917068481445,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.028671007603406906,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.1056923866271973,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.029719552025198936,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.1232962608337402,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02930845133960247,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.1489388942718506,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.027267523109912872,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.1068339347839355,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.027122870087623596,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.091658115386963,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02892552688717842,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.119953155517578,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.026107516139745712,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.1324267387390137,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.02834368869662285,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.1135330200195312,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.0268089696764946,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.1197123527526855,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.026696885004639626,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.132866859436035,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.026226269081234932,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.123291492462158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.025809111073613167,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.1176891326904297,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.026975948363542557,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.1067097187042236,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.025468360632658005,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.083657741546631,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.027642717584967613,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.1571693420410156,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.030620668083429337,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.073249340057373,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.1638689041137695,
+ "eval_runtime": 50.1889,
+ "eval_samples_per_second": 48.656,
+ "eval_steps_per_second": 1.534,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.03377586975693703,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 2.993783950805664,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.044740110635757446,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 2.95580792427063,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.05047239363193512,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 2.984628200531006,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.05149499326944351,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 2.955806016921997,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.05277741700410843,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 2.9356045722961426,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.060614872723817825,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 2.9882826805114746,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.06538370996713638,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.006455898284912,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.06005706638097763,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.0134925842285156,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.05942390486598015,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 2.9740724563598633,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06382409483194351,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.0069828033447266,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.06441724300384521,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 2.984314441680908,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.06459930539131165,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 2.9846179485321045,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05755109339952469,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 2.9764816761016846,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.046704988926649094,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 2.974026679992676,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0429978221654892,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 2.9861302375793457,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.04319468140602112,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 2.9621310234069824,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.038795970380306244,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.0014288425445557,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.03589440509676933,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 2.9826390743255615,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.03705231845378876,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 2.9580907821655273,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.03636796772480011,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.0007996559143066,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.03867757320404053,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 2.997044563293457,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.035327792167663574,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 2.996936798095703,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.032282304018735886,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.004767417907715,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.03375651687383652,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 2.9920854568481445,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.03619010001420975,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.0199923515319824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03363100066781044,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.034114122390747,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03060806356370449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 2.975198984146118,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.032294221222400665,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.015141010284424,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.034491732716560364,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 2.9978959560394287,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.03376961871981621,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.036426067352295,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.031041108071804047,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 2.998319625854492,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.031940486282110214,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.0469486713409424,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.031123239547014236,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.0072379112243652,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.030734606087207794,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.036997079849243,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.031764306128025055,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.0447278022766113,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.02990185283124447,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.034921646118164,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.030433475971221924,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.0206940174102783,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.030094126239418983,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.0418972969055176,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028662586584687233,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.0309152603149414,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.028792817145586014,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.036865234375,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.02997520938515663,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.067462205886841,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.029610155150294304,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.0205025672912598,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.028371484950184822,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.030869960784912,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.028344448655843735,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.0825698375701904,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.029161743819713593,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.0391931533813477,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.030113916844129562,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.042543411254883,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.03028416447341442,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.0566306114196777,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02867533080279827,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.0492074489593506,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.027289753779768944,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.0639188289642334,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02910415083169937,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.05964732170105,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02688678912818432,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.043264865875244,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02871597558259964,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.0865440368652344,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.02735147811472416,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.0280027389526367,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.027558112516999245,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.073667049407959,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.028590068221092224,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.0775787830352783,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.027421196922659874,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.048530101776123,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.02900906838476658,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.0512452125549316,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.028081346303224564,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.0729379653930664,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.02822948433458805,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.020914077758789,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.0274699404835701,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.038802146911621,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.029244130477309227,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.058251142501831,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.02987384982407093,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.1160788536071777,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.029393648728728294,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.0817503929138184,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.026882443577051163,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.07822322845459,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.02949383296072483,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.108980178833008,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.028918517753481865,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.064551830291748,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.027755869552493095,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.06553316116333,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.02706395648419857,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.068215847015381,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.02960599586367607,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.103351354598999,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.027660982683300972,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.0554938316345215,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02664663828909397,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.0832924842834473,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.032493703067302704,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.1057381629943848,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.198692321777344,
+ "eval_runtime": 50.5728,
+ "eval_samples_per_second": 48.287,
+ "eval_steps_per_second": 1.523,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.03448135778307915,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 2.902876615524292,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04302665591239929,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 2.9181900024414062,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.039954621344804764,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 2.917631149291992,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.03846871852874756,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 2.8900160789489746,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.0419776476919651,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 2.9141645431518555,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.044107574969530106,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 2.927809238433838,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.045430976897478104,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 2.8964736461639404,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.04940217733383179,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 2.9224932193756104,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.04955849424004555,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 2.9199090003967285,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.04267909377813339,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 2.9093246459960938,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.040362149477005005,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 2.9300074577331543,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.0392213836312294,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 2.887371063232422,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.03784675523638725,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 2.9503865242004395,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.03810061886906624,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 2.958479166030884,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.037828173488378525,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 2.9732666015625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.03713241219520569,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 2.9283528327941895,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.034065280109643936,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 2.9621665477752686,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.034690748900175095,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 2.9354934692382812,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.03508505970239639,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 2.943425178527832,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03737015649676323,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 2.9421677589416504,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036430537700653076,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 2.9525837898254395,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03370670601725578,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 2.9548637866973877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.03323587030172348,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 2.9914984703063965,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.035796184092760086,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 2.9237194061279297,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03700924664735794,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 2.948540449142456,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03579916059970856,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 2.9956037998199463,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.03507564589381218,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 2.9762418270111084,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.03425542265176773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 2.9770028591156006,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03175437077879906,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 2.9596753120422363,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.03424549847841263,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.0127992630004883,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03541243076324463,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.0040507316589355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03360338136553764,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 2.9928014278411865,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03273842856287956,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.000690460205078,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.032325662672519684,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.0052268505096436,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.029814070090651512,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 2.978851795196533,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.03210059925913811,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.0176095962524414,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.03372536972165108,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 2.993715286254883,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.03361409902572632,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 2.9708826541900635,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.03308112174272537,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.018354892730713,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.03435883671045303,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 2.959341526031494,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.03298819810152054,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.002148151397705,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.0329960361123085,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 2.9962527751922607,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.032080624252557755,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.008674144744873,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.030718278139829636,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 2.9645867347717285,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.03157243877649307,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.0405192375183105,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.03140097111463547,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.0006134510040283,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02908974327147007,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.013761043548584,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.02906658500432968,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.0001585483551025,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.030192526057362556,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 2.9960665702819824,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.030781449750065804,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 2.9812984466552734,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02945280261337757,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.0034046173095703,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.0288874302059412,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 2.9988417625427246,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.029345402494072914,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.0185203552246094,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.030031058937311172,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 2.99812388420105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.03058621473610401,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.010664463043213,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.028900042176246643,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.0187997817993164,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.030530644580721855,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.0028939247131348,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.029458772391080856,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.0392160415649414,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02845492772758007,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.044290542602539,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.03136971592903137,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.0263891220092773,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.029435086995363235,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 2.985365152359009,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02924281544983387,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.0277979373931885,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.03096146509051323,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.057739734649658,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.030985411256551743,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.010835647583008,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.028439484536647797,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.0429558753967285,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.028826508671045303,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.042165994644165,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.030978480353951454,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.030463218688965,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.03113269992172718,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.0347206592559814,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.029333986341953278,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.0340566635131836,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.028592009097337723,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.0445430278778076,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.029219510033726692,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.0399398803710938,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03413752093911171,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.0056731700897217,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.237446308135986,
+ "eval_runtime": 59.9078,
+ "eval_samples_per_second": 40.763,
+ "eval_steps_per_second": 1.285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.034361813217401505,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 2.8506712913513184,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.04355017840862274,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 2.875974655151367,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.04627153277397156,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 2.8806381225585938,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.046760041266679764,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 2.885575294494629,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.047849562019109726,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 2.8877172470092773,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.05132419615983963,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 2.8731319904327393,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.055483944714069366,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 2.895557403564453,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.05445433780550957,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 2.8901214599609375,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05026889964938164,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 2.8833224773406982,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.04411771148443222,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 2.9307775497436523,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.04263966530561447,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 2.879582166671753,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.043958500027656555,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 2.939608573913574,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04170852527022362,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 2.8954102993011475,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.04250946268439293,
+ "learning_rate": 0.000255486047794226,
+ "loss": 2.905449867248535,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.03957650065422058,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 2.902536392211914,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.04019796848297119,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 2.9027833938598633,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.04101439192891121,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 2.9148616790771484,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.039887234568595886,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 2.9088759422302246,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.03551582247018814,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 2.9005210399627686,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.03631351888179779,
+ "learning_rate": 0.000253907826333243,
+ "loss": 2.898406982421875,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.037652842700481415,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 2.918330192565918,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.036207735538482666,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 2.901122570037842,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.03508591651916504,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 2.9172091484069824,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.03406108543276787,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 2.8902015686035156,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.0352897085249424,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 2.8839168548583984,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.034633710980415344,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 2.9500584602355957,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03378494456410408,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 2.9374589920043945,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035448409616947174,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 2.882023811340332,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.0342826247215271,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 2.917515993118286,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.035327695310115814,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 2.911947727203369,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.03480467572808266,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 2.932415723800659,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.033533770591020584,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 2.958162546157837,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.03515322506427765,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 2.9077601432800293,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.03477735444903374,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 2.9195446968078613,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.03331083804368973,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 2.9775338172912598,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.03524516895413399,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 2.9310715198516846,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.03693820536136627,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 2.9650168418884277,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.03709941357374191,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 2.947303533554077,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.03669232130050659,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 2.982583522796631,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.034720368683338165,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 2.9623732566833496,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.03503575548529625,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 2.974088668823242,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.035023026168346405,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 2.9098939895629883,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.033050745725631714,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 2.9042611122131348,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.031803570687770844,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 2.985610008239746,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.03282999247312546,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 2.960763692855835,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.031893156468868256,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 2.9578733444213867,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.032003387808799744,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 2.9249801635742188,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.033047523349523544,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 2.9870409965515137,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.03174681216478348,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 2.973292350769043,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.03340791165828705,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 2.950939893722534,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.031847093254327774,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 2.952643871307373,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.032836299389600754,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.019166946411133,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.034089937806129456,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 2.964816093444824,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.031224727630615234,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.0118958950042725,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.031020160764455795,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 2.9807839393615723,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.030780989676713943,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 2.9778659343719482,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.030965285375714302,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 2.951444625854492,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.030757633969187737,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 2.9213666915893555,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.030994407832622528,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 2.947293996810913,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.03153432533144951,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 2.957968235015869,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.0315159447491169,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 2.995504140853882,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.031412918120622635,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 2.9789376258850098,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.03151796758174896,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 2.9787068367004395,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.03126099333167076,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.0285658836364746,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.03302513808012009,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.0173215866088867,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.032137684524059296,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 2.9977149963378906,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.031667932868003845,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 2.9881951808929443,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.03230196237564087,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 2.9845004081726074,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.03160998225212097,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 2.957639694213867,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.032368507236242294,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 2.969564914703369,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.031104926019906998,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 2.9951319694519043,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03458526358008385,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 2.955331563949585,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.268571376800537,
+ "eval_runtime": 50.4836,
+ "eval_samples_per_second": 48.372,
+ "eval_steps_per_second": 1.525,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.03699421510100365,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 2.850717544555664,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.0552988164126873,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 2.8399477005004883,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.057985689491033554,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 2.857229709625244,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.054917413741350174,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 2.8211488723754883,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.05402746424078941,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 2.8415608406066895,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.054649870842695236,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 2.8209891319274902,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.05316663533449173,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 2.848078966140747,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05129793658852577,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 2.8209495544433594,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.04771186783909798,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 2.848766565322876,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.04471662640571594,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 2.8405871391296387,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.04101414605975151,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 2.8075788021087646,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03750685229897499,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 2.8461761474609375,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.038734205067157745,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 2.81836199760437,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.042089853435754776,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 2.8583831787109375,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.043621618300676346,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 2.856410026550293,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03975158557295799,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 2.857800006866455,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.03914690762758255,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 2.8430817127227783,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03641999512910843,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 2.877098321914673,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.03628985583782196,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 2.8480634689331055,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.03707660734653473,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 2.8734331130981445,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.035252269357442856,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 2.853245258331299,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.03399394825100899,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 2.865544557571411,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.034946687519550323,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 2.8984780311584473,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.03414832055568695,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 2.8756165504455566,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.035122696310281754,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 2.836993932723999,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03457608446478844,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 2.8713862895965576,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.033898934721946716,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 2.8357291221618652,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.03419061005115509,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 2.9146008491516113,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.033601172268390656,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 2.9022369384765625,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.03507845103740692,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 2.898716688156128,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.03497530519962311,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 2.9049177169799805,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03447664901614189,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 2.8999228477478027,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.0327288918197155,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 2.8973376750946045,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.033647146075963974,
+ "learning_rate": 0.000231465389734324,
+ "loss": 2.907761335372925,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.03163779154419899,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 2.8606152534484863,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.03331096097826958,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 2.907522201538086,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.03455515205860138,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 2.8875679969787598,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.03523692488670349,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 2.9399242401123047,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.03430662304162979,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 2.920187473297119,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.03257483243942261,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 2.8856418132781982,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.03351624682545662,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 2.901949882507324,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.032566532492637634,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 2.9538679122924805,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.03294380381703377,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 2.9028542041778564,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.033534467220306396,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 2.920865058898926,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.03345954790711403,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 2.92004656791687,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.035632308572530746,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 2.9112181663513184,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.03495397791266441,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 2.9229912757873535,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.03374304622411728,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 2.9415764808654785,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.03485272079706192,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 2.9459822177886963,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.03648442402482033,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 2.930266857147217,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.03564995899796486,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 2.9442505836486816,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.03357839956879616,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 2.9406819343566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.03164827451109886,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 2.907163619995117,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.03588789328932762,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 2.919649839401245,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.035855360329151154,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 2.9178667068481445,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.03332711383700371,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 2.964325428009033,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.03329632803797722,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 2.920757293701172,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.036365825682878494,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 2.938229560852051,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.03682578727602959,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 2.92783522605896,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.03180156275629997,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 2.923375129699707,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.03338734805583954,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 2.909148693084717,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.03403759375214577,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 2.954238176345825,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.03311001881957054,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 2.9092135429382324,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.033959005028009415,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 2.962198257446289,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.03287528082728386,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 2.9339723587036133,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.031624604016542435,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 2.931535243988037,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.031244613230228424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 2.927706718444824,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.03359205275774002,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 2.950260877609253,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.03514735773205757,
+ "learning_rate": 0.00022244633283095,
+ "loss": 2.976957082748413,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.031232791021466255,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 2.9199209213256836,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.033515579998493195,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 2.9487085342407227,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03924408182501793,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 2.9397668838500977,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.309950351715088,
+ "eval_runtime": 50.2121,
+ "eval_samples_per_second": 48.634,
+ "eval_steps_per_second": 1.533,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03797328472137451,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 2.7964625358581543,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05182477831840515,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 2.7840116024017334,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05243600532412529,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 2.7720894813537598,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.049961578100919724,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 2.7968246936798096,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.05004527047276497,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 2.819459915161133,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05132897198200226,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 2.8177990913391113,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.04748285934329033,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 2.7943527698516846,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.04613078758120537,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 2.7934889793395996,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.04528726637363434,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 2.8120880126953125,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.04460810869932175,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 2.8086094856262207,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.04940483346581459,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 2.783414840698242,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.04755563288927078,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 2.786266326904297,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.039832018315792084,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 2.8260536193847656,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.04122614488005638,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 2.8158113956451416,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.04259834438562393,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 2.8159971237182617,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.0441596657037735,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 2.8201799392700195,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.044361185282468796,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 2.809572219848633,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.044445883482694626,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 2.820591926574707,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.041293222457170486,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 2.8170418739318848,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.04198037087917328,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 2.8230514526367188,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.040943801403045654,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 2.8785529136657715,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.04062051326036453,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 2.8197708129882812,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.04014413058757782,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 2.845383644104004,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.03760908544063568,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 2.859769344329834,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.03789070248603821,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 2.8416380882263184,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.040182486176490784,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 2.830772876739502,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04032180830836296,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 2.820589542388916,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.042562272399663925,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 2.8250768184661865,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.039164844900369644,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 2.8789186477661133,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.036587074398994446,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 2.8665075302124023,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03641028329730034,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 2.8668501377105713,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.03790752962231636,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 2.831110954284668,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03793574497103691,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 2.859065055847168,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.03824981302022934,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 2.894343852996826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.038279470056295395,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 2.849274158477783,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.036916445940732956,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 2.822936534881592,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.035255685448646545,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 2.9116382598876953,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.03675640746951103,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 2.8434290885925293,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.03706246614456177,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 2.8097033500671387,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.03486589714884758,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 2.8667774200439453,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.034129124134778976,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 2.8889684677124023,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.035698726773262024,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 2.8895792961120605,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.03454627841711044,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 2.863913059234619,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.032894328236579895,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 2.844942569732666,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.03542465344071388,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 2.868215799331665,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.03403910622000694,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 2.867429256439209,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.03446296975016594,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 2.860053300857544,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.03430024906992912,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 2.8507087230682373,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.03218062222003937,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 2.871540069580078,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.033100277185440063,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 2.8558998107910156,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.03332056477665901,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 2.8602569103240967,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.03521702438592911,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 2.856260299682617,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.03411679342389107,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 2.869317054748535,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.03389536961913109,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 2.8770289421081543,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.03530183807015419,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 2.88539457321167,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.03610125556588173,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 2.8895177841186523,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.0340193547308445,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 2.888007164001465,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.03255763277411461,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 2.8962326049804688,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.036177389323711395,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 2.87697172164917,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.034373488277196884,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 2.9129204750061035,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.03416284918785095,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 2.8778076171875,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.03269495069980621,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 2.9018735885620117,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.0355791412293911,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 2.8736732006073,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.03452740237116814,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 2.9138574600219727,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.03226732090115547,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 2.8750157356262207,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.03449986129999161,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 2.8816564083099365,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.033824801445007324,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 2.8952057361602783,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.034431736916303635,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 2.92415452003479,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.032803770154714584,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 2.9336395263671875,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.03375089541077614,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 2.885989189147949,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.03369738161563873,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 2.901681900024414,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03740214183926582,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 2.9028968811035156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.352105140686035,
+ "eval_runtime": 50.4518,
+ "eval_samples_per_second": 48.403,
+ "eval_steps_per_second": 1.526,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03719676285982132,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 2.7506203651428223,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.04799883812665939,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 2.7436680793762207,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.04992787167429924,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 2.785435199737549,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.04670284688472748,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 2.765993118286133,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.04460717365145683,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 2.7355451583862305,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.04692559316754341,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 2.753324508666992,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.043969348073005676,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 2.739989757537842,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.0410359688103199,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 2.7363996505737305,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.04173228144645691,
+ "learning_rate": 0.000201141724176723,
+ "loss": 2.751185178756714,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.04204905033111572,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 2.770327091217041,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.040645647794008255,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 2.7410969734191895,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.04042249917984009,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 2.771155834197998,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 2.767975330352783,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.039667751640081406,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 2.761502265930176,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.04095076397061348,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 2.784851551055908,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.0422712042927742,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 2.7631585597991943,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.04403155669569969,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 2.757833480834961,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.04208405315876007,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 2.7453598976135254,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.03917219862341881,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 2.7579214572906494,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03793885558843613,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 2.7856955528259277,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.04241294413805008,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 2.8095250129699707,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.043874748051166534,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 2.784102439880371,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.043710801750421524,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 2.7893218994140625,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.03927089646458626,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 2.772472620010376,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.037578973919153214,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 2.791860580444336,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.03958947956562042,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 2.80277156829834,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.041760701686143875,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 2.810274600982666,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.03933396562933922,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 2.7954909801483154,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03693462163209915,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 2.8056864738464355,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.036877796053886414,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 2.8361990451812744,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.03616270422935486,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 2.8347058296203613,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.036112796515226364,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 2.805556535720825,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.039925526827573776,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 2.8245959281921387,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.038287658244371414,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 2.805874824523926,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.03738972172141075,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 2.800257682800293,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03568391501903534,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 2.815108299255371,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03511364385485649,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 2.79067325592041,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.035567332059144974,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 2.8227243423461914,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.03635167330503464,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 2.7965641021728516,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.038816045969724655,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 2.7981600761413574,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.03729109838604927,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 2.815075159072876,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.03504854813218117,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 2.8329830169677734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.036570195108652115,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 2.821903944015503,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.035399142652750015,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 2.8031158447265625,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03458433970808983,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 2.804354190826416,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.0365789458155632,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 2.8451900482177734,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.03705596551299095,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 2.861931085586548,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03605107590556145,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 2.8246450424194336,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.03616880625486374,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 2.832051992416382,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.03935617581009865,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 2.8594398498535156,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.038325585424900055,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 2.837932825088501,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.03649872541427612,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 2.864701271057129,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.036109115928411484,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 2.8517560958862305,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.03894130885601044,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 2.8157949447631836,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.038372039794921875,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 2.8479137420654297,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.03452896699309349,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 2.8600716590881348,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.03632326424121857,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 2.8263001441955566,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.03763658180832863,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 2.8175363540649414,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.03593018278479576,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 2.828946113586426,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.03475581854581833,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 2.856628894805908,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.03520223870873451,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 2.870553970336914,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.035959191620349884,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 2.8436391353607178,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.03600265458226204,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 2.86441969871521,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.03651043772697449,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 2.8605189323425293,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.03449200838804245,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 2.8725595474243164,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.03539549931883812,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 2.8368237018585205,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.03668821230530739,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 2.882417917251587,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.03392226621508598,
+ "learning_rate": 0.000186516746349841,
+ "loss": 2.8854141235351562,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.0369710847735405,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 2.885317325592041,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.03497837111353874,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 2.880661964416504,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.03550030663609505,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 2.833157539367676,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03926094248890877,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 2.8475146293640137,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.394933223724365,
+ "eval_runtime": 50.6913,
+ "eval_samples_per_second": 48.174,
+ "eval_steps_per_second": 1.519,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.043481744825839996,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 2.7305550575256348,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.053153567016124725,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 2.717087984085083,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.052458375692367554,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.686765670776367,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.04814518243074417,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 2.72470760345459,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04681197181344032,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.693404197692871,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.04720525071024895,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.6897501945495605,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.047475386410951614,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 2.741422176361084,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.049529723823070526,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.6869325637817383,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.04822194576263428,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.6873905658721924,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.04628577083349228,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 2.729592800140381,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.04367085173726082,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 2.7228331565856934,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.04440176114439964,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 2.7436013221740723,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.044516388326883316,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 2.7400388717651367,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0438699945807457,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.6777939796447754,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.04249744489789009,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.701598882675171,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.038822516798973083,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 2.732938289642334,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.0413549467921257,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 2.7495951652526855,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.04422483593225479,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 2.7503349781036377,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.04198349639773369,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 2.7643909454345703,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.041043829172849655,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 2.7135918140411377,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03967289999127388,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.7103633880615234,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.04005147144198418,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 2.748504161834717,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.04070824012160301,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.6916699409484863,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04390577971935272,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 2.750455379486084,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.043122485280036926,
+ "learning_rate": 0.000179445406945268,
+ "loss": 2.7423312664031982,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03647756204009056,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 2.7361197471618652,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.03861029073596001,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 2.775204658508301,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04231081157922745,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 2.7497947216033936,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.04208704084157944,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 2.7545595169067383,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.03729049488902092,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 2.7283387184143066,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.0379655547440052,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 2.78347110748291,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04115770384669304,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 2.7719345092773438,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.04086964204907417,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 2.796412944793701,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.03825974091887474,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 2.7443013191223145,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.036880265921354294,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 2.7366080284118652,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03627486899495125,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 2.8126893043518066,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03680504858493805,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 2.7860169410705566,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.037588510662317276,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 2.784741163253784,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.036638807505369186,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 2.787360191345215,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.033687569200992584,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 2.7557525634765625,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03601320460438728,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 2.750558853149414,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.036490608006715775,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 2.7603161334991455,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03581147640943527,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 2.8177523612976074,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03664109483361244,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 2.773531198501587,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03521975129842758,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 2.802985906600952,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03567864000797272,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 2.7715282440185547,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.03634249418973923,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 2.783874988555908,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03536146879196167,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 2.8035964965820312,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.036448799073696136,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 2.787716865539551,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.036559030413627625,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 2.778810501098633,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03604830801486969,
+ "learning_rate": 0.000173176617304673,
+ "loss": 2.782071113586426,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03640980273485184,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 2.820803642272949,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.034831587225198746,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 2.8025026321411133,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.03584841638803482,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 2.8057172298431396,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.035353146493434906,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 2.821279525756836,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03484848141670227,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 2.817362070083618,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.0363977774977684,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 2.798384666442871,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03677841275930405,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 2.8462960720062256,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.033444907516241074,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 2.8119957447052,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.0360054150223732,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 2.7947516441345215,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.036171745508909225,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 2.815831184387207,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.03641003742814064,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 2.808131694793701,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.03541484475135803,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 2.8605761528015137,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.03575175255537033,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 2.840233564376831,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.036277081817388535,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 2.7937965393066406,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.03619410842657089,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 2.850496768951416,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.03414769843220711,
+ "learning_rate": 0.00016935382741164,
+ "loss": 2.8395838737487793,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.037818793207407,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 2.8413162231445312,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.03481597453355789,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 2.8057632446289062,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.03372214362025261,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 2.806955575942993,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.035471074283123016,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 2.8164381980895996,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.040505655109882355,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 2.821949005126953,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.442426681518555,
+ "eval_runtime": 50.5463,
+ "eval_samples_per_second": 48.312,
+ "eval_steps_per_second": 1.523,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.040360890328884125,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.6719675064086914,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.047384459525346756,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.631821632385254,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.041619714349508286,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.6519036293029785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.04094138368964195,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.656247615814209,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.04390440508723259,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 2.689321994781494,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.042488861829042435,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.661299705505371,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.04079974815249443,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 2.7099952697753906,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.040120258927345276,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.672731399536133,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.045239564031362534,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.6671290397644043,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.04565443471074104,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.688469886779785,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.04325062781572342,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.6866841316223145,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.042317189276218414,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.6908586025238037,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.04298596829175949,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.6890554428100586,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.04236339032649994,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.6589977741241455,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.04177287593483925,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.6802594661712646,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.04414846748113632,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 2.7234978675842285,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.046593230217695236,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.7059357166290283,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.04565853998064995,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.7076125144958496,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.04481668397784233,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.705566644668579,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.04029017314314842,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.6801295280456543,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.03784259408712387,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 2.718494176864624,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.03952431306242943,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.692405939102173,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.0413871668279171,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.7163681983947754,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.04014147073030472,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 2.7119476795196533,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.039213456213474274,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.702211380004883,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.03716482222080231,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.7004847526550293,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.03758992999792099,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 2.759352445602417,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.04070932790637016,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.7059261798858643,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03782462328672409,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.7063827514648438,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.038561753928661346,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.702890396118164,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.040485069155693054,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 2.728665351867676,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.04195099696516991,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 2.739861488342285,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.04205700010061264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 2.732515811920166,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.037712372839450836,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.7063097953796387,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03902430832386017,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 2.7210097312927246,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0451044961810112,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 2.7702722549438477,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.04305797442793846,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 2.7315967082977295,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.037595830857753754,
+ "learning_rate": 0.000159218843594243,
+ "loss": 2.755042791366577,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03781610727310181,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.6963937282562256,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.04262562468647957,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 2.739180088043213,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.03966844081878662,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 2.731743335723877,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.03667006641626358,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 2.768737316131592,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.04043777659535408,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 2.744929313659668,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.044052302837371826,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 2.771634578704834,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.03826981410384178,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 2.7353196144104004,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03758488968014717,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 2.7528347969055176,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.04268691688776016,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 2.7540318965911865,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.041325002908706665,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 2.7647171020507812,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.037344686686992645,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 2.76705265045166,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.042450353503227234,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.7144453525543213,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.04224000498652458,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 2.759082794189453,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.038104742765426636,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 2.7497215270996094,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03811940923333168,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 2.7790403366088867,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.041614845395088196,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 2.7288498878479004,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.03948371857404709,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 2.748359203338623,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.03905073553323746,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 2.7725560665130615,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.041112206876277924,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 2.762186050415039,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03879137709736824,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 2.734889030456543,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.03886166214942932,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 2.8005852699279785,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.04294531047344208,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 2.7776103019714355,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.03838416188955307,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 2.761643409729004,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.038427963852882385,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 2.7586638927459717,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.04066694155335426,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 2.760824680328369,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.037848424166440964,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 2.778289318084717,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.03844791650772095,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 2.749744415283203,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.039958324283361435,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 2.7985734939575195,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03874100372195244,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 2.774866819381714,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.036840081214904785,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 2.805913209915161,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.03725936636328697,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 2.781439781188965,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.04035738855600357,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 2.758686065673828,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.04106197506189346,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 2.771879196166992,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.042643509805202484,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 2.7765140533447266,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.4830546379089355,
+ "eval_runtime": 50.4391,
+ "eval_samples_per_second": 48.415,
+ "eval_steps_per_second": 1.527,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.04445832222700119,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.6106953620910645,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.05079226940870285,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.6472721099853516,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.04819434881210327,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.629481792449951,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.047417085617780685,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.6317343711853027,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.04363427683711052,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.6411972045898438,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.04454582557082176,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.6416287422180176,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.04812787473201752,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.6330764293670654,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.04939486086368561,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.6355319023132324,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.043980687856674194,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.666226863861084,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.040836285799741745,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.6286075115203857,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.042456481605768204,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.6513962745666504,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.042755771428346634,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.662870407104492,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.04120723903179169,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.6305460929870605,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03987514600157738,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.593961715698242,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.038635555654764175,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.6607577800750732,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.04158136621117592,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.6735172271728516,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.03990459814667702,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.6527466773986816,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.04141661524772644,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.6488356590270996,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.041069503873586655,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.664846897125244,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.041106708347797394,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.661078691482544,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.04089801013469696,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.671553134918213,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.042857419699430466,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.631235361099243,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.040352705866098404,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.675701141357422,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.03929511830210686,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.682508945465088,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.03924228623509407,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.708465337753296,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.04071180149912834,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.643385887145996,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.0444309264421463,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.700355291366577,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04204278439283371,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.6900219917297363,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.04269995540380478,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.6792659759521484,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03987446427345276,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.6759490966796875,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.040391139686107635,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.673100471496582,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.044392503798007965,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.7062530517578125,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04163298010826111,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.6927719116210938,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.03959506377577782,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.675417423248291,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.04166583716869354,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.6413064002990723,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.04037674888968468,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 2.7350051403045654,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03836590051651001,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.6984071731567383,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.039869897067546844,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.690366268157959,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.041240107268095016,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.681495189666748,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03860987350344658,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.665367603302002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03899926319718361,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.700815200805664,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03890778869390488,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 2.7328848838806152,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03876316174864769,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.68580961227417,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03872651979327202,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 2.734034776687622,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.04012880101799965,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.700725555419922,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.038113679736852646,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.6887927055358887,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03834610804915428,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 2.7499499320983887,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03771091252565384,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 2.720296859741211,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.03800208866596222,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 2.7197604179382324,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.03881968930363655,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.7176647186279297,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.0374908410012722,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.690718173980713,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.038332752883434296,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.715179920196533,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.038576558232307434,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 2.746676445007324,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.0400109626352787,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.703824043273926,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.037498198449611664,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 2.716090679168701,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.03695759177207947,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.713515520095825,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.03913547471165657,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 2.7210280895233154,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.03884539380669594,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.7117247581481934,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03601778298616409,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 2.7416625022888184,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.037836555391550064,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 2.734532594680786,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03748112544417381,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 2.731274127960205,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.03544784337282181,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 2.736314296722412,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.03774402663111687,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.7095437049865723,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.038037873804569244,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 2.756585121154785,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.03488243371248245,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 2.7442431449890137,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03599962964653969,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.707491397857666,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.03502672165632248,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 2.716686248779297,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.036128927022218704,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.7225708961486816,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.03735365718603134,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 2.7557473182678223,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.035510897636413574,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 2.7392797470092773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03622622787952423,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.7216439247131348,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.04298526421189308,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.7173662185668945,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.5357537269592285,
+ "eval_runtime": 49.8442,
+ "eval_samples_per_second": 48.993,
+ "eval_steps_per_second": 1.545,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.03985700011253357,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.6052660942077637,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04620801657438278,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.5740966796875,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.044712893664836884,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.6004700660705566,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.04012317582964897,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.600916862487793,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.044026028364896774,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.576073169708252,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.043087441474199295,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.626457691192627,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.04223402217030525,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.6100473403930664,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.04012474790215492,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.579037666320801,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.04075590521097183,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.6013243198394775,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.04263768345117569,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.5797343254089355,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.0437036007642746,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.605804443359375,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.04141918942332268,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.6161954402923584,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.042701561003923416,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.588104724884033,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.04051755741238594,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.63607120513916,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.040545061230659485,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.578261613845825,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.04212940111756325,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.61200213432312,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.040179986506700516,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.6383485794067383,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.039657603949308395,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.5792112350463867,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.04174843430519104,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.6256041526794434,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.04303969442844391,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.6175689697265625,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03980931639671326,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.645751476287842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.03945872560143471,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.6274805068969727,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.041664935648441315,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.63307785987854,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.04068799689412117,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.671088695526123,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03808875009417534,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.634873390197754,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.039898037910461426,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.612959384918213,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.039436567574739456,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.6136088371276855,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03854961693286896,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.6199045181274414,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.039016980677843094,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.6532626152038574,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.04286973178386688,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.6704297065734863,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.04259027913212776,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.643263339996338,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.0383823961019516,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.611354351043701,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03800790011882782,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.6505303382873535,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.04109592363238335,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.6408276557922363,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03953855484724045,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.648859977722168,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03878771886229515,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.6458206176757812,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.038982708007097244,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.6521599292755127,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.040703918784856796,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.6366281509399414,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.03949141874909401,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.6558713912963867,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.038015007972717285,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.661327362060547,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.03950005769729614,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.6772499084472656,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.04112942889332771,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.6699628829956055,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03833170235157013,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.639796733856201,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03846743702888489,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.665966033935547,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.04084270820021629,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.6835081577301025,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.039603691548109055,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.645036220550537,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.03755602613091469,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.636746883392334,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03712184354662895,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.655641555786133,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.03938367962837219,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.6591956615448,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.038674671202898026,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.6812376976013184,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.038195330649614334,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.656327486038208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.036538265645504,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.6915717124938965,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03923949599266052,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.7005720138549805,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.037056393921375275,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.6582674980163574,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03739362582564354,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.7053751945495605,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.03783062472939491,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.696133852005005,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.0376109816133976,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.6649022102355957,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.038971349596977234,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.691373348236084,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03856601193547249,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.6802258491516113,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.038097307085990906,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.7032206058502197,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03931786119937897,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.6992850303649902,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03947259858250618,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.698995590209961,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.03853216394782066,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.6777477264404297,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.039491306990385056,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.6987290382385254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03773514926433563,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.6838934421539307,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.03863334655761719,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.7135207653045654,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03979440778493881,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.701352119445801,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.03785509243607521,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.6999247074127197,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.038537297397851944,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 2.751741886138916,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.03880061209201813,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 2.748833179473877,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03738826885819435,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.683391809463501,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.0449042022228241,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.7020788192749023,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.582073211669922,
+ "eval_runtime": 50.3331,
+ "eval_samples_per_second": 48.517,
+ "eval_steps_per_second": 1.53,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.04957824945449829,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.5561342239379883,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.051621027290821075,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.55710768699646,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.04076312482357025,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.577810287475586,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.045077674090862274,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.5761308670043945,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.046679362654685974,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.5405921936035156,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.04333045333623886,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.538569927215576,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.04026757553219795,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.573428153991699,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.04426717758178711,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.5496468544006348,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.04363221675157547,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.563781976699829,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.041887130588293076,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.556375503540039,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.040823422372341156,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.5587844848632812,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.04291372001171112,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.5855326652526855,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.04177108779549599,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.5619170665740967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.04060564562678337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.540727376937866,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.04139444977045059,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.5472490787506104,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.042231716215610504,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.577768087387085,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03968733921647072,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.624655246734619,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.040328193455934525,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.582808494567871,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.03915536776185036,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.6056838035583496,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.04003116860985756,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.578835964202881,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.04006281867623329,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.5787596702575684,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.04027514532208443,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.588151216506958,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03803051635622978,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.5702273845672607,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.04273895546793938,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.6007587909698486,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.040866825729608536,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.6010937690734863,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04029610753059387,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.5835423469543457,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04058460518717766,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.5980067253112793,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04066930338740349,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.6139941215515137,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03889986500144005,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.6235108375549316,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03889729455113411,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.6000213623046875,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.04100755229592323,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.571910858154297,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.04003692790865898,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.6206862926483154,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.039827097207307816,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.608489513397217,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03958888724446297,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.6149001121520996,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.03996104747056961,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.6105237007141113,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03948056325316429,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.6436567306518555,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.04011122137308121,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.6045284271240234,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.042783472687006,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.6284329891204834,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03877517580986023,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.6050562858581543,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03930690884590149,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.612881660461426,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03950059413909912,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.615734100341797,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03758558630943298,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.6356282234191895,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.04032298922538757,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.6540396213531494,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.038972049951553345,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.627459764480591,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.038282424211502075,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.630862236022949,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.038827721029520035,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.6224913597106934,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03931719809770584,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.6378655433654785,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03871314600110054,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.64253568649292,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03832100331783295,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.599008321762085,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.0384882353246212,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.655564785003662,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.038193441927433014,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.637547016143799,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03857916593551636,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.626636505126953,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03885370120406151,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.6606898307800293,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.038665495812892914,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.620786428451538,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03897741064429283,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.633166790008545,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.039391979575157166,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.6339595317840576,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03873669356107712,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.651726722717285,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.037708647549152374,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.652022361755371,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.03909820690751076,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.6521129608154297,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.038191623985767365,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.683443784713745,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03814183920621872,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.676152229309082,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03845800459384918,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.6696252822875977,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.038761205971241,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.6575536727905273,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0382290855050087,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.6571602821350098,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03818494826555252,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.651632785797119,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03811158239841461,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.6381514072418213,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03911985829472542,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.6576035022735596,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03915153071284294,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.6679182052612305,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.03922194242477417,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.658327102661133,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0385582372546196,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.685403347015381,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.03856402263045311,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.631997585296631,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.045574504882097244,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.6455907821655273,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.630706787109375,
+ "eval_runtime": 50.343,
+ "eval_samples_per_second": 48.507,
+ "eval_steps_per_second": 1.53,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.04299811273813248,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.545808792114258,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.045796580612659454,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.5412497520446777,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.04268919304013252,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.4988510608673096,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0424925871193409,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.525517463684082,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.04330209642648697,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.5031142234802246,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.041762471199035645,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.5395960807800293,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.04157201945781708,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.5294952392578125,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.04115210101008415,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.5068864822387695,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.042207006365060806,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.5413942337036133,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.04241922125220299,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.54648756980896,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.04021521657705307,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.5409865379333496,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.04181341454386711,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.5094356536865234,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.04286786913871765,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.5473742485046387,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.041187625378370285,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.560746669769287,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.04282910376787186,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.5277230739593506,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.04170593246817589,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.540250778198242,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.04097793623805046,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.5618107318878174,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.04386851564049721,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.5429463386535645,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.0451020784676075,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.548234462738037,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03941088169813156,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.530017375946045,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.04631779342889786,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.5817222595214844,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.048373859375715256,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.5460047721862793,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.04272238537669182,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.554980754852295,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.041539616882801056,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.579061985015869,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.04433664306998253,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.5660667419433594,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.0416690930724144,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.5579190254211426,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.039509691298007965,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.5495524406433105,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04351760447025299,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.5485236644744873,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.043173156678676605,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.5312328338623047,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03899776190519333,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.600411891937256,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.04337446019053459,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.5862069129943848,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03929191455245018,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.5661725997924805,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04101184010505676,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.5867369174957275,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.04147906228899956,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.5857348442077637,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.04191290959715843,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.5731992721557617,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.040721844881772995,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.5813965797424316,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.04001890867948532,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.5747785568237305,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.03962702676653862,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.5933737754821777,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.039932604879140854,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.576674461364746,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.039338432252407074,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.5782008171081543,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.038861170411109924,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.610973358154297,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.039563652127981186,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.601799726486206,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.03961700573563576,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.575131893157959,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03986692801117897,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.615356922149658,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03836435824632645,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.5949208736419678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03855856508016586,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.582308292388916,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03856024891138077,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.6111443042755127,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.039093017578125,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.5793564319610596,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.038725245743989944,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.6067581176757812,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.0380857028067112,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.646773338317871,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03855524957180023,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.5918726921081543,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.037457797676324844,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.617043972015381,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03869820013642311,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.6114768981933594,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03711248189210892,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.5982959270477295,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.038945212960243225,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.6045446395874023,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03832259029150009,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.6037979125976562,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03934606537222862,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.6163489818573,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.03900086134672165,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.6069135665893555,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03861298784613609,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.606722831726074,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.038183990865945816,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.623232841491699,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03909875825047493,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.6339173316955566,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03840210661292076,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.622582197189331,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03828253969550133,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.5958876609802246,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0381259024143219,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.5990607738494873,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03966856002807617,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.607971668243408,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.037702202796936035,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.6083734035491943,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.038444772362709045,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.594470977783203,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.03691141679883003,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.613913059234619,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.038606252521276474,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.605672836303711,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.037440285086631775,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.6157281398773193,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.037814900279045105,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.6148059368133545,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.043760623782873154,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.5653724670410156,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.68303108215332,
+ "eval_runtime": 50.4878,
+ "eval_samples_per_second": 48.368,
+ "eval_steps_per_second": 1.525,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.04217155650258064,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.4836583137512207,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.042030464857816696,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.4783711433410645,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.04258885607123375,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.4772050380706787,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.04180571064352989,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.47452974319458,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.0409804992377758,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.5100820064544678,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.043249111622571945,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.4972734451293945,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.039890021085739136,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.4979066848754883,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.04291659593582153,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.514129638671875,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.04137815535068512,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.5026347637176514,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.04209413006901741,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.522614002227783,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.041909098625183105,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.4863014221191406,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.04288608953356743,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.4999732971191406,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.04160395637154579,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.50962495803833,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.0438438281416893,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.529510021209717,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.038461409509181976,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.520538806915283,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.04244046285748482,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.478781223297119,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.040004923939704895,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.496654510498047,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.04082861170172691,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.518338680267334,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.040987443178892136,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.4999513626098633,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.03953491151332855,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.520509719848633,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03990933299064636,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.5096051692962646,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.04095710813999176,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.5433297157287598,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.038632433861494064,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.5112204551696777,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.040502630174160004,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.51623272895813,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.0398704893887043,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.512924909591675,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.040709007531404495,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.554586410522461,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.0406210832297802,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.532557487487793,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.03889348730444908,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.525108575820923,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.04015064612030983,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.535057544708252,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.041169796139001846,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.5659022331237793,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.038989391177892685,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.5369086265563965,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04099688306450844,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.5184175968170166,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039829690009355545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.560692071914673,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.04020677134394646,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.510549783706665,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.04203888401389122,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.5451645851135254,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03780362010002136,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.555356502532959,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.041025105863809586,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.52476167678833,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.039431892335414886,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.544099807739258,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.04021573066711426,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.5828700065612793,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.04179903864860535,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.524014472961426,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03899601846933365,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.5616817474365234,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.04191318526864052,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.5606822967529297,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.041458819061517715,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.5735056400299072,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.04002033919095993,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.571634292602539,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.040181905031204224,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.5569653511047363,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.038881316781044006,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.530872344970703,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.04001537337899208,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.5545527935028076,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.039509210735559464,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.55985164642334,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03836548700928688,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.55220890045166,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.04025840759277344,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.5837690830230713,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03974878787994385,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.558772563934326,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.039377935230731964,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.5522451400756836,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.04093307629227638,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.5774669647216797,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.04037470743060112,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.5393733978271484,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03933698311448097,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.55163311958313,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.03948088735342026,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.5783205032348633,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03987252712249756,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.5497002601623535,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.03954288363456726,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.5974178314208984,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.039707835763692856,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.5708115100860596,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03880715370178223,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.540225028991699,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.038271792232990265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.5887298583984375,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03849945217370987,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.5666351318359375,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.03806721419095993,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.5850937366485596,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.0387803390622139,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.6387054920196533,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03776047006249428,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.5704126358032227,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03837171196937561,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.606600761413574,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.036957480013370514,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.5789999961853027,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.03784535825252533,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.590054988861084,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.037523914128541946,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.5862486362457275,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.03855528682470322,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.5896804332733154,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.038172684609889984,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.606858253479004,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.04597382992506027,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.5731430053710938,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.7312445640563965,
+ "eval_runtime": 50.1493,
+ "eval_samples_per_second": 48.695,
+ "eval_steps_per_second": 1.535,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.040082935243844986,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.45803165435791,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.04075422137975693,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.4373645782470703,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.042375173419713974,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.445497751235962,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.039676643908023834,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.4527292251586914,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.040263883769512177,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.443726062774658,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.040542446076869965,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.509228229522705,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.039546187967061996,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.4740281105041504,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.0399077869951725,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.4613571166992188,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.039962101727724075,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.468287944793701,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.038253072649240494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.4556660652160645,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.0400204136967659,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.501220464706421,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03921268507838249,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.4513282775878906,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03845704346895218,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.4371821880340576,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.04014671593904495,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.4713072776794434,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03871054947376251,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.498952865600586,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0389760285615921,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.479438543319702,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.03928804025053978,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.5111570358276367,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03890380635857582,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.492244005203247,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03893847391009331,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.4832241535186768,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.038555655628442764,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.473994493484497,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.03958532586693764,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.527578115463257,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.038863442838191986,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.5026330947875977,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.040074966847896576,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.5063109397888184,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.039247799664735794,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.4882097244262695,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.0395796075463295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.4660420417785645,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.03938698396086693,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.479153871536255,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.040745142847299576,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.500609874725342,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03822821378707886,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.5150585174560547,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.040366094559431076,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.5044541358947754,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03831731155514717,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.5147018432617188,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.039682671427726746,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.507406711578369,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03898734226822853,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.4951791763305664,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.03892234340310097,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.512556791305542,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.04019404947757721,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.5360331535339355,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03920825198292732,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.548699378967285,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.0385311096906662,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.476630687713623,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03797920420765877,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.5356290340423584,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.040193237364292145,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.4933314323425293,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03881823644042015,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.5130982398986816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.04049588739871979,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.536677837371826,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.03893541917204857,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.517401695251465,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.039656784385442734,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.5111303329467773,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.04180547967553139,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.5226423740386963,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03851541131734848,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.5222482681274414,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.040863897651433945,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.552680253982544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03873211517930031,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.5296826362609863,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.039825811982154846,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.542590856552124,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.039727456867694855,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.545682191848755,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03819560632109642,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.4885478019714355,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.038781970739364624,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.5392041206359863,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.037839289754629135,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.50968337059021,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03794427216053009,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.5143909454345703,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.038396988064050674,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.528244733810425,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03887055069208145,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.5750365257263184,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03852991387248039,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.5416150093078613,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.037425361573696136,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.5320820808410645,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.038594916462898254,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.5445098876953125,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.036525335162878036,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.5580685138702393,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.038885194808244705,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.5431809425354004,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.036410942673683167,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.5070929527282715,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03869079798460007,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.533327579498291,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03747229650616646,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.5502867698669434,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.038209374994039536,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.525596857070923,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03808588162064552,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.5384087562561035,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03895717114210129,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.536189556121826,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.037719666957855225,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.5489635467529297,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.038963451981544495,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.546940803527832,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03746771812438965,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.529160976409912,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.03972191363573074,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.5499086380004883,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03742365911602974,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.5488295555114746,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03897562995553017,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.5693445205688477,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.046561457216739655,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.5275135040283203,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-2880/training_args.bin b/runs/baseline-lr6e-4/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3240/config.json b/runs/baseline-lr6e-4/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3240/generation_config.json b/runs/baseline-lr6e-4/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3240/model.safetensors b/runs/baseline-lr6e-4/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..763b9bb50a198ae43bff659f3ddc70eee5c812dc
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3dd763f946d7c77b0c843094ca7fb7640dbeb5bec06209885696b66f6ec2f3d8
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..93e1c0c79a7868392db933e31f634447fe87582c
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:874f1cd3700025180fd2373b5c36d0df900bbf856e6aad72032cfe128bf60f5f
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..854d237a4ff7656e8561049ef131e53b73d26e13
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1f0fdefddf6f30886458ed628f8251f23fec39a294e6649a7ab241784b8460
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bf9f97063d7490c565f537598baa2da46c4b6b26
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35669f76342834bd66ba665f73a6cfdbe07c4f2c0f41f6e5e6ed2ad3ae67a161
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..26a875c54fc41f3b55217f78e9787c3a1beec0e7
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ffe46f59a068a92a009d9e85177c3c1b0af06eb72511444aa28197cfb8d5f1be
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3240/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3240/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c0a390d6ec3162a9136953b5116aaf07248b0109
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/trainer_state.json
@@ -0,0 +1,23066 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 45.0,
+ "eval_steps": 500,
+ "global_step": 3240,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013973799126637555,
+ "grad_norm": 0.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.136509418487549,
+ "eval_runtime": 49.9105,
+ "eval_samples_per_second": 48.928,
+ "eval_steps_per_second": 1.543,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.03253521770238876,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 2.996598243713379,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04506896063685417,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 2.9996728897094727,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.048917125910520554,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.01076602935791,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.04610349237918854,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 2.995270252227783,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.045683592557907104,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.03594970703125,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.05354170873761177,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.0199317932128906,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.06507625430822372,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.0495800971984863,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.07209842652082443,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.0578527450561523,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.07035882771015167,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.0229921340942383,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.05863689258694649,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.030324935913086,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.04508105292916298,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.0372116565704346,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04252060130238533,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.0351850986480713,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.044466983526945114,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.04567289352417,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.04447634890675545,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.0374679565429688,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.04119309037923813,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.0243847370147705,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03847199305891991,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.001368522644043,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03716685250401497,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.0389842987060547,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.03758823871612549,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.0392327308654785,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.039980918169021606,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.048888683319092,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.038987886160612106,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.048262119293213,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03671572729945183,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.0321078300476074,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.03564755246043205,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.005302906036377,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.033568378537893295,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.031449556350708,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03358025476336479,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.0719268321990967,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.033897947520017624,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.0156619548797607,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.030079921707510948,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.037581205368042,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02967393398284912,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.0666556358337402,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.031029149889945984,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.095435619354248,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.03093329258263111,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.062168598175049,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.030287278816103935,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.037875175476074,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.030194830149412155,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.072413921356201,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.029436185956001282,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.0657665729522705,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.028946757316589355,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.069164276123047,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.028802946209907532,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.0415639877319336,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02906205505132675,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.104550361633301,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.029995542019605637,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.068049430847168,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03007844276726246,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.0652952194213867,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02816668152809143,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.1197381019592285,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.02691139280796051,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.0562210083007812,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.02815496176481247,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.1038076877593994,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.028936119750142097,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.0725107192993164,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.03108699806034565,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.0953660011291504,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.030596446245908737,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.107701301574707,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026907946914434433,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.0547142028808594,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.02814572863280773,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.1026806831359863,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.0319778174161911,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.111511707305908,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.0307171531021595,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.080237865447998,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.028055021539330482,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.0788159370422363,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.028181064873933792,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.1019601821899414,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02825072593986988,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.1220169067382812,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.027759063988924026,
+ "learning_rate": 0.000303,
+ "loss": 3.120443344116211,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.028384150937199593,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.1227922439575195,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02828066237270832,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.090130090713501,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.027049461379647255,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.1284799575805664,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.027248091995716095,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.1222071647644043,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02682642824947834,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.0584917068481445,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.028671007603406906,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.1056923866271973,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.029719552025198936,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.1232962608337402,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02930845133960247,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.1489388942718506,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.027267523109912872,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.1068339347839355,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.027122870087623596,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.091658115386963,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02892552688717842,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.119953155517578,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.026107516139745712,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.1324267387390137,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.02834368869662285,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.1135330200195312,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.0268089696764946,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.1197123527526855,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.026696885004639626,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.132866859436035,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.026226269081234932,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.123291492462158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.025809111073613167,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.1176891326904297,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.026975948363542557,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.1067097187042236,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.025468360632658005,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.083657741546631,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.027642717584967613,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.1571693420410156,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.030620668083429337,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.073249340057373,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.1638689041137695,
+ "eval_runtime": 50.1889,
+ "eval_samples_per_second": 48.656,
+ "eval_steps_per_second": 1.534,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.03377586975693703,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 2.993783950805664,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.044740110635757446,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 2.95580792427063,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.05047239363193512,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 2.984628200531006,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.05149499326944351,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 2.955806016921997,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.05277741700410843,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 2.9356045722961426,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.060614872723817825,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 2.9882826805114746,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.06538370996713638,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.006455898284912,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.06005706638097763,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.0134925842285156,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.05942390486598015,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 2.9740724563598633,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06382409483194351,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.0069828033447266,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.06441724300384521,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 2.984314441680908,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.06459930539131165,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 2.9846179485321045,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05755109339952469,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 2.9764816761016846,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.046704988926649094,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 2.974026679992676,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0429978221654892,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 2.9861302375793457,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.04319468140602112,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 2.9621310234069824,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.038795970380306244,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.0014288425445557,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.03589440509676933,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 2.9826390743255615,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.03705231845378876,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 2.9580907821655273,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.03636796772480011,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.0007996559143066,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.03867757320404053,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 2.997044563293457,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.035327792167663574,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 2.996936798095703,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.032282304018735886,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.004767417907715,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.03375651687383652,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 2.9920854568481445,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.03619010001420975,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.0199923515319824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03363100066781044,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.034114122390747,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03060806356370449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 2.975198984146118,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.032294221222400665,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.015141010284424,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.034491732716560364,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 2.9978959560394287,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.03376961871981621,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.036426067352295,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.031041108071804047,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 2.998319625854492,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.031940486282110214,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.0469486713409424,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.031123239547014236,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.0072379112243652,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.030734606087207794,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.036997079849243,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.031764306128025055,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.0447278022766113,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.02990185283124447,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.034921646118164,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.030433475971221924,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.0206940174102783,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.030094126239418983,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.0418972969055176,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028662586584687233,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.0309152603149414,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.028792817145586014,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.036865234375,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.02997520938515663,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.067462205886841,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.029610155150294304,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.0205025672912598,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.028371484950184822,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.030869960784912,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.028344448655843735,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.0825698375701904,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.029161743819713593,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.0391931533813477,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.030113916844129562,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.042543411254883,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.03028416447341442,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.0566306114196777,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02867533080279827,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.0492074489593506,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.027289753779768944,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.0639188289642334,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02910415083169937,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.05964732170105,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02688678912818432,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.043264865875244,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02871597558259964,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.0865440368652344,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.02735147811472416,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.0280027389526367,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.027558112516999245,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.073667049407959,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.028590068221092224,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.0775787830352783,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.027421196922659874,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.048530101776123,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.02900906838476658,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.0512452125549316,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.028081346303224564,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.0729379653930664,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.02822948433458805,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.020914077758789,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.0274699404835701,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.038802146911621,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.029244130477309227,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.058251142501831,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.02987384982407093,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.1160788536071777,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.029393648728728294,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.0817503929138184,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.026882443577051163,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.07822322845459,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.02949383296072483,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.108980178833008,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.028918517753481865,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.064551830291748,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.027755869552493095,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.06553316116333,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.02706395648419857,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.068215847015381,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.02960599586367607,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.103351354598999,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.027660982683300972,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.0554938316345215,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02664663828909397,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.0832924842834473,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.032493703067302704,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.1057381629943848,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.198692321777344,
+ "eval_runtime": 50.5728,
+ "eval_samples_per_second": 48.287,
+ "eval_steps_per_second": 1.523,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.03448135778307915,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 2.902876615524292,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04302665591239929,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 2.9181900024414062,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.039954621344804764,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 2.917631149291992,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.03846871852874756,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 2.8900160789489746,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.0419776476919651,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 2.9141645431518555,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.044107574969530106,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 2.927809238433838,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.045430976897478104,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 2.8964736461639404,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.04940217733383179,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 2.9224932193756104,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.04955849424004555,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 2.9199090003967285,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.04267909377813339,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 2.9093246459960938,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.040362149477005005,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 2.9300074577331543,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.0392213836312294,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 2.887371063232422,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.03784675523638725,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 2.9503865242004395,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.03810061886906624,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 2.958479166030884,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.037828173488378525,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 2.9732666015625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.03713241219520569,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 2.9283528327941895,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.034065280109643936,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 2.9621665477752686,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.034690748900175095,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 2.9354934692382812,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.03508505970239639,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 2.943425178527832,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03737015649676323,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 2.9421677589416504,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036430537700653076,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 2.9525837898254395,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03370670601725578,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 2.9548637866973877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.03323587030172348,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 2.9914984703063965,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.035796184092760086,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 2.9237194061279297,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03700924664735794,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 2.948540449142456,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03579916059970856,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 2.9956037998199463,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.03507564589381218,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 2.9762418270111084,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.03425542265176773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 2.9770028591156006,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03175437077879906,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 2.9596753120422363,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.03424549847841263,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.0127992630004883,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03541243076324463,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.0040507316589355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03360338136553764,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 2.9928014278411865,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03273842856287956,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.000690460205078,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.032325662672519684,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.0052268505096436,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.029814070090651512,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 2.978851795196533,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.03210059925913811,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.0176095962524414,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.03372536972165108,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 2.993715286254883,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.03361409902572632,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 2.9708826541900635,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.03308112174272537,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.018354892730713,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.03435883671045303,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 2.959341526031494,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.03298819810152054,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.002148151397705,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.0329960361123085,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 2.9962527751922607,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.032080624252557755,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.008674144744873,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.030718278139829636,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 2.9645867347717285,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.03157243877649307,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.0405192375183105,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.03140097111463547,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.0006134510040283,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02908974327147007,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.013761043548584,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.02906658500432968,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.0001585483551025,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.030192526057362556,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 2.9960665702819824,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.030781449750065804,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 2.9812984466552734,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02945280261337757,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.0034046173095703,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.0288874302059412,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 2.9988417625427246,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.029345402494072914,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.0185203552246094,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.030031058937311172,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 2.99812388420105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.03058621473610401,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.010664463043213,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.028900042176246643,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.0187997817993164,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.030530644580721855,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.0028939247131348,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.029458772391080856,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.0392160415649414,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02845492772758007,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.044290542602539,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.03136971592903137,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.0263891220092773,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.029435086995363235,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 2.985365152359009,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02924281544983387,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.0277979373931885,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.03096146509051323,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.057739734649658,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.030985411256551743,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.010835647583008,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.028439484536647797,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.0429558753967285,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.028826508671045303,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.042165994644165,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.030978480353951454,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.030463218688965,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.03113269992172718,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.0347206592559814,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.029333986341953278,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.0340566635131836,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.028592009097337723,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.0445430278778076,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.029219510033726692,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.0399398803710938,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03413752093911171,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.0056731700897217,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.237446308135986,
+ "eval_runtime": 59.9078,
+ "eval_samples_per_second": 40.763,
+ "eval_steps_per_second": 1.285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.034361813217401505,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 2.8506712913513184,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.04355017840862274,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 2.875974655151367,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.04627153277397156,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 2.8806381225585938,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.046760041266679764,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 2.885575294494629,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.047849562019109726,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 2.8877172470092773,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.05132419615983963,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 2.8731319904327393,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.055483944714069366,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 2.895557403564453,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.05445433780550957,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 2.8901214599609375,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05026889964938164,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 2.8833224773406982,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.04411771148443222,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 2.9307775497436523,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.04263966530561447,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 2.879582166671753,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.043958500027656555,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 2.939608573913574,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04170852527022362,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 2.8954102993011475,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.04250946268439293,
+ "learning_rate": 0.000255486047794226,
+ "loss": 2.905449867248535,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.03957650065422058,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 2.902536392211914,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.04019796848297119,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 2.9027833938598633,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.04101439192891121,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 2.9148616790771484,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.039887234568595886,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 2.9088759422302246,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.03551582247018814,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 2.9005210399627686,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.03631351888179779,
+ "learning_rate": 0.000253907826333243,
+ "loss": 2.898406982421875,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.037652842700481415,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 2.918330192565918,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.036207735538482666,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 2.901122570037842,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.03508591651916504,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 2.9172091484069824,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.03406108543276787,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 2.8902015686035156,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.0352897085249424,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 2.8839168548583984,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.034633710980415344,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 2.9500584602355957,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03378494456410408,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 2.9374589920043945,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035448409616947174,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 2.882023811340332,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.0342826247215271,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 2.917515993118286,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.035327695310115814,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 2.911947727203369,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.03480467572808266,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 2.932415723800659,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.033533770591020584,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 2.958162546157837,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.03515322506427765,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 2.9077601432800293,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.03477735444903374,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 2.9195446968078613,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.03331083804368973,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 2.9775338172912598,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.03524516895413399,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 2.9310715198516846,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.03693820536136627,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 2.9650168418884277,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.03709941357374191,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 2.947303533554077,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.03669232130050659,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 2.982583522796631,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.034720368683338165,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 2.9623732566833496,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.03503575548529625,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 2.974088668823242,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.035023026168346405,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 2.9098939895629883,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.033050745725631714,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 2.9042611122131348,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.031803570687770844,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 2.985610008239746,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.03282999247312546,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 2.960763692855835,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.031893156468868256,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 2.9578733444213867,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.032003387808799744,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 2.9249801635742188,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.033047523349523544,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 2.9870409965515137,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.03174681216478348,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 2.973292350769043,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.03340791165828705,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 2.950939893722534,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.031847093254327774,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 2.952643871307373,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.032836299389600754,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.019166946411133,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.034089937806129456,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 2.964816093444824,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.031224727630615234,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.0118958950042725,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.031020160764455795,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 2.9807839393615723,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.030780989676713943,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 2.9778659343719482,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.030965285375714302,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 2.951444625854492,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.030757633969187737,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 2.9213666915893555,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.030994407832622528,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 2.947293996810913,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.03153432533144951,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 2.957968235015869,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.0315159447491169,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 2.995504140853882,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.031412918120622635,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 2.9789376258850098,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.03151796758174896,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 2.9787068367004395,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.03126099333167076,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.0285658836364746,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.03302513808012009,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.0173215866088867,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.032137684524059296,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 2.9977149963378906,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.031667932868003845,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 2.9881951808929443,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.03230196237564087,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 2.9845004081726074,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.03160998225212097,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 2.957639694213867,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.032368507236242294,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 2.969564914703369,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.031104926019906998,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 2.9951319694519043,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03458526358008385,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 2.955331563949585,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.268571376800537,
+ "eval_runtime": 50.4836,
+ "eval_samples_per_second": 48.372,
+ "eval_steps_per_second": 1.525,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.03699421510100365,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 2.850717544555664,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.0552988164126873,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 2.8399477005004883,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.057985689491033554,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 2.857229709625244,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.054917413741350174,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 2.8211488723754883,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.05402746424078941,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 2.8415608406066895,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.054649870842695236,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 2.8209891319274902,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.05316663533449173,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 2.848078966140747,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05129793658852577,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 2.8209495544433594,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.04771186783909798,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 2.848766565322876,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.04471662640571594,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 2.8405871391296387,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.04101414605975151,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 2.8075788021087646,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03750685229897499,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 2.8461761474609375,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.038734205067157745,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 2.81836199760437,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.042089853435754776,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 2.8583831787109375,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.043621618300676346,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 2.856410026550293,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03975158557295799,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 2.857800006866455,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.03914690762758255,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 2.8430817127227783,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03641999512910843,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 2.877098321914673,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.03628985583782196,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 2.8480634689331055,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.03707660734653473,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 2.8734331130981445,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.035252269357442856,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 2.853245258331299,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.03399394825100899,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 2.865544557571411,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.034946687519550323,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 2.8984780311584473,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.03414832055568695,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 2.8756165504455566,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.035122696310281754,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 2.836993932723999,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03457608446478844,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 2.8713862895965576,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.033898934721946716,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 2.8357291221618652,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.03419061005115509,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 2.9146008491516113,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.033601172268390656,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 2.9022369384765625,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.03507845103740692,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 2.898716688156128,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.03497530519962311,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 2.9049177169799805,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03447664901614189,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 2.8999228477478027,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.0327288918197155,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 2.8973376750946045,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.033647146075963974,
+ "learning_rate": 0.000231465389734324,
+ "loss": 2.907761335372925,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.03163779154419899,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 2.8606152534484863,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.03331096097826958,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 2.907522201538086,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.03455515205860138,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 2.8875679969787598,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.03523692488670349,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 2.9399242401123047,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.03430662304162979,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 2.920187473297119,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.03257483243942261,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 2.8856418132781982,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.03351624682545662,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 2.901949882507324,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.032566532492637634,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 2.9538679122924805,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.03294380381703377,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 2.9028542041778564,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.033534467220306396,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 2.920865058898926,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.03345954790711403,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 2.92004656791687,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.035632308572530746,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 2.9112181663513184,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.03495397791266441,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 2.9229912757873535,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.03374304622411728,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 2.9415764808654785,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.03485272079706192,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 2.9459822177886963,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.03648442402482033,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 2.930266857147217,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.03564995899796486,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 2.9442505836486816,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.03357839956879616,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 2.9406819343566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.03164827451109886,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 2.907163619995117,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.03588789328932762,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 2.919649839401245,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.035855360329151154,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 2.9178667068481445,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.03332711383700371,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 2.964325428009033,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.03329632803797722,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 2.920757293701172,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.036365825682878494,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 2.938229560852051,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.03682578727602959,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 2.92783522605896,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.03180156275629997,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 2.923375129699707,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.03338734805583954,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 2.909148693084717,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.03403759375214577,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 2.954238176345825,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.03311001881957054,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 2.9092135429382324,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.033959005028009415,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 2.962198257446289,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.03287528082728386,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 2.9339723587036133,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.031624604016542435,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 2.931535243988037,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.031244613230228424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 2.927706718444824,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.03359205275774002,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 2.950260877609253,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.03514735773205757,
+ "learning_rate": 0.00022244633283095,
+ "loss": 2.976957082748413,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.031232791021466255,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 2.9199209213256836,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.033515579998493195,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 2.9487085342407227,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03924408182501793,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 2.9397668838500977,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.309950351715088,
+ "eval_runtime": 50.2121,
+ "eval_samples_per_second": 48.634,
+ "eval_steps_per_second": 1.533,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03797328472137451,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 2.7964625358581543,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05182477831840515,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 2.7840116024017334,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05243600532412529,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 2.7720894813537598,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.049961578100919724,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 2.7968246936798096,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.05004527047276497,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 2.819459915161133,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05132897198200226,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 2.8177990913391113,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.04748285934329033,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 2.7943527698516846,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.04613078758120537,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 2.7934889793395996,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.04528726637363434,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 2.8120880126953125,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.04460810869932175,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 2.8086094856262207,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.04940483346581459,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 2.783414840698242,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.04755563288927078,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 2.786266326904297,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.039832018315792084,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 2.8260536193847656,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.04122614488005638,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 2.8158113956451416,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.04259834438562393,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 2.8159971237182617,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.0441596657037735,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 2.8201799392700195,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.044361185282468796,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 2.809572219848633,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.044445883482694626,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 2.820591926574707,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.041293222457170486,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 2.8170418739318848,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.04198037087917328,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 2.8230514526367188,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.040943801403045654,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 2.8785529136657715,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.04062051326036453,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 2.8197708129882812,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.04014413058757782,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 2.845383644104004,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.03760908544063568,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 2.859769344329834,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.03789070248603821,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 2.8416380882263184,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.040182486176490784,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 2.830772876739502,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04032180830836296,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 2.820589542388916,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.042562272399663925,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 2.8250768184661865,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.039164844900369644,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 2.8789186477661133,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.036587074398994446,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 2.8665075302124023,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03641028329730034,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 2.8668501377105713,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.03790752962231636,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 2.831110954284668,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03793574497103691,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 2.859065055847168,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.03824981302022934,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 2.894343852996826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.038279470056295395,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 2.849274158477783,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.036916445940732956,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 2.822936534881592,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.035255685448646545,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 2.9116382598876953,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.03675640746951103,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 2.8434290885925293,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.03706246614456177,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 2.8097033500671387,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.03486589714884758,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 2.8667774200439453,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.034129124134778976,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 2.8889684677124023,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.035698726773262024,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 2.8895792961120605,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.03454627841711044,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 2.863913059234619,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.032894328236579895,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 2.844942569732666,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.03542465344071388,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 2.868215799331665,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.03403910622000694,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 2.867429256439209,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.03446296975016594,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 2.860053300857544,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.03430024906992912,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 2.8507087230682373,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.03218062222003937,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 2.871540069580078,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.033100277185440063,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 2.8558998107910156,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.03332056477665901,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 2.8602569103240967,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.03521702438592911,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 2.856260299682617,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.03411679342389107,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 2.869317054748535,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.03389536961913109,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 2.8770289421081543,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.03530183807015419,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 2.88539457321167,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.03610125556588173,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 2.8895177841186523,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.0340193547308445,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 2.888007164001465,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.03255763277411461,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 2.8962326049804688,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.036177389323711395,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 2.87697172164917,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.034373488277196884,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 2.9129204750061035,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.03416284918785095,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 2.8778076171875,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.03269495069980621,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 2.9018735885620117,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.0355791412293911,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 2.8736732006073,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.03452740237116814,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 2.9138574600219727,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.03226732090115547,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 2.8750157356262207,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.03449986129999161,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 2.8816564083099365,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.033824801445007324,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 2.8952057361602783,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.034431736916303635,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 2.92415452003479,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.032803770154714584,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 2.9336395263671875,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.03375089541077614,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 2.885989189147949,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.03369738161563873,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 2.901681900024414,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03740214183926582,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 2.9028968811035156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.352105140686035,
+ "eval_runtime": 50.4518,
+ "eval_samples_per_second": 48.403,
+ "eval_steps_per_second": 1.526,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03719676285982132,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 2.7506203651428223,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.04799883812665939,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 2.7436680793762207,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.04992787167429924,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 2.785435199737549,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.04670284688472748,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 2.765993118286133,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.04460717365145683,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 2.7355451583862305,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.04692559316754341,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 2.753324508666992,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.043969348073005676,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 2.739989757537842,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.0410359688103199,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 2.7363996505737305,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.04173228144645691,
+ "learning_rate": 0.000201141724176723,
+ "loss": 2.751185178756714,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.04204905033111572,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 2.770327091217041,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.040645647794008255,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 2.7410969734191895,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.04042249917984009,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 2.771155834197998,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 2.767975330352783,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.039667751640081406,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 2.761502265930176,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.04095076397061348,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 2.784851551055908,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.0422712042927742,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 2.7631585597991943,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.04403155669569969,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 2.757833480834961,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.04208405315876007,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 2.7453598976135254,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.03917219862341881,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 2.7579214572906494,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03793885558843613,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 2.7856955528259277,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.04241294413805008,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 2.8095250129699707,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.043874748051166534,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 2.784102439880371,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.043710801750421524,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 2.7893218994140625,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.03927089646458626,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 2.772472620010376,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.037578973919153214,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 2.791860580444336,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.03958947956562042,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 2.80277156829834,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.041760701686143875,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 2.810274600982666,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.03933396562933922,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 2.7954909801483154,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03693462163209915,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 2.8056864738464355,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.036877796053886414,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 2.8361990451812744,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.03616270422935486,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 2.8347058296203613,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.036112796515226364,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 2.805556535720825,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.039925526827573776,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 2.8245959281921387,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.038287658244371414,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 2.805874824523926,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.03738972172141075,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 2.800257682800293,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03568391501903534,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 2.815108299255371,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03511364385485649,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 2.79067325592041,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.035567332059144974,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 2.8227243423461914,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.03635167330503464,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 2.7965641021728516,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.038816045969724655,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 2.7981600761413574,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.03729109838604927,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 2.815075159072876,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.03504854813218117,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 2.8329830169677734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.036570195108652115,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 2.821903944015503,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.035399142652750015,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 2.8031158447265625,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03458433970808983,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 2.804354190826416,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.0365789458155632,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 2.8451900482177734,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.03705596551299095,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 2.861931085586548,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03605107590556145,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 2.8246450424194336,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.03616880625486374,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 2.832051992416382,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.03935617581009865,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 2.8594398498535156,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.038325585424900055,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 2.837932825088501,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.03649872541427612,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 2.864701271057129,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.036109115928411484,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 2.8517560958862305,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.03894130885601044,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 2.8157949447631836,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.038372039794921875,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 2.8479137420654297,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.03452896699309349,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 2.8600716590881348,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.03632326424121857,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 2.8263001441955566,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.03763658180832863,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 2.8175363540649414,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.03593018278479576,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 2.828946113586426,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.03475581854581833,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 2.856628894805908,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.03520223870873451,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 2.870553970336914,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.035959191620349884,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 2.8436391353607178,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.03600265458226204,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 2.86441969871521,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.03651043772697449,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 2.8605189323425293,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.03449200838804245,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 2.8725595474243164,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.03539549931883812,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 2.8368237018585205,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.03668821230530739,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 2.882417917251587,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.03392226621508598,
+ "learning_rate": 0.000186516746349841,
+ "loss": 2.8854141235351562,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.0369710847735405,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 2.885317325592041,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.03497837111353874,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 2.880661964416504,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.03550030663609505,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 2.833157539367676,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03926094248890877,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 2.8475146293640137,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.394933223724365,
+ "eval_runtime": 50.6913,
+ "eval_samples_per_second": 48.174,
+ "eval_steps_per_second": 1.519,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.043481744825839996,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 2.7305550575256348,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.053153567016124725,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 2.717087984085083,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.052458375692367554,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.686765670776367,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.04814518243074417,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 2.72470760345459,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04681197181344032,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.693404197692871,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.04720525071024895,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.6897501945495605,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.047475386410951614,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 2.741422176361084,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.049529723823070526,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.6869325637817383,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.04822194576263428,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.6873905658721924,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.04628577083349228,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 2.729592800140381,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.04367085173726082,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 2.7228331565856934,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.04440176114439964,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 2.7436013221740723,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.044516388326883316,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 2.7400388717651367,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0438699945807457,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.6777939796447754,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.04249744489789009,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.701598882675171,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.038822516798973083,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 2.732938289642334,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.0413549467921257,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 2.7495951652526855,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.04422483593225479,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 2.7503349781036377,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.04198349639773369,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 2.7643909454345703,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.041043829172849655,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 2.7135918140411377,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03967289999127388,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.7103633880615234,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.04005147144198418,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 2.748504161834717,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.04070824012160301,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.6916699409484863,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04390577971935272,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 2.750455379486084,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.043122485280036926,
+ "learning_rate": 0.000179445406945268,
+ "loss": 2.7423312664031982,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03647756204009056,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 2.7361197471618652,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.03861029073596001,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 2.775204658508301,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04231081157922745,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 2.7497947216033936,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.04208704084157944,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 2.7545595169067383,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.03729049488902092,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 2.7283387184143066,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.0379655547440052,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 2.78347110748291,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04115770384669304,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 2.7719345092773438,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.04086964204907417,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 2.796412944793701,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.03825974091887474,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 2.7443013191223145,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.036880265921354294,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 2.7366080284118652,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03627486899495125,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 2.8126893043518066,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03680504858493805,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 2.7860169410705566,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.037588510662317276,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 2.784741163253784,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.036638807505369186,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 2.787360191345215,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.033687569200992584,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 2.7557525634765625,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03601320460438728,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 2.750558853149414,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.036490608006715775,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 2.7603161334991455,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03581147640943527,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 2.8177523612976074,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03664109483361244,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 2.773531198501587,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03521975129842758,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 2.802985906600952,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03567864000797272,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 2.7715282440185547,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.03634249418973923,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 2.783874988555908,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03536146879196167,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 2.8035964965820312,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.036448799073696136,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 2.787716865539551,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.036559030413627625,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 2.778810501098633,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03604830801486969,
+ "learning_rate": 0.000173176617304673,
+ "loss": 2.782071113586426,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03640980273485184,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 2.820803642272949,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.034831587225198746,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 2.8025026321411133,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.03584841638803482,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 2.8057172298431396,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.035353146493434906,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 2.821279525756836,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03484848141670227,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 2.817362070083618,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.0363977774977684,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 2.798384666442871,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03677841275930405,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 2.8462960720062256,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.033444907516241074,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 2.8119957447052,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.0360054150223732,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 2.7947516441345215,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.036171745508909225,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 2.815831184387207,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.03641003742814064,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 2.808131694793701,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.03541484475135803,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 2.8605761528015137,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.03575175255537033,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 2.840233564376831,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.036277081817388535,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 2.7937965393066406,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.03619410842657089,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 2.850496768951416,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.03414769843220711,
+ "learning_rate": 0.00016935382741164,
+ "loss": 2.8395838737487793,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.037818793207407,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 2.8413162231445312,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.03481597453355789,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 2.8057632446289062,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.03372214362025261,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 2.806955575942993,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.035471074283123016,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 2.8164381980895996,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.040505655109882355,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 2.821949005126953,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.442426681518555,
+ "eval_runtime": 50.5463,
+ "eval_samples_per_second": 48.312,
+ "eval_steps_per_second": 1.523,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.040360890328884125,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.6719675064086914,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.047384459525346756,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.631821632385254,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.041619714349508286,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.6519036293029785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.04094138368964195,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.656247615814209,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.04390440508723259,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 2.689321994781494,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.042488861829042435,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.661299705505371,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.04079974815249443,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 2.7099952697753906,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.040120258927345276,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.672731399536133,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.045239564031362534,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.6671290397644043,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.04565443471074104,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.688469886779785,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.04325062781572342,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.6866841316223145,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.042317189276218414,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.6908586025238037,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.04298596829175949,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.6890554428100586,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.04236339032649994,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.6589977741241455,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.04177287593483925,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.6802594661712646,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.04414846748113632,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 2.7234978675842285,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.046593230217695236,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.7059357166290283,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.04565853998064995,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.7076125144958496,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.04481668397784233,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.705566644668579,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.04029017314314842,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.6801295280456543,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.03784259408712387,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 2.718494176864624,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.03952431306242943,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.692405939102173,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.0413871668279171,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.7163681983947754,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.04014147073030472,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 2.7119476795196533,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.039213456213474274,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.702211380004883,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.03716482222080231,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.7004847526550293,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.03758992999792099,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 2.759352445602417,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.04070932790637016,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.7059261798858643,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03782462328672409,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.7063827514648438,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.038561753928661346,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.702890396118164,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.040485069155693054,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 2.728665351867676,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.04195099696516991,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 2.739861488342285,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.04205700010061264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 2.732515811920166,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.037712372839450836,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.7063097953796387,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03902430832386017,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 2.7210097312927246,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0451044961810112,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 2.7702722549438477,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.04305797442793846,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 2.7315967082977295,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.037595830857753754,
+ "learning_rate": 0.000159218843594243,
+ "loss": 2.755042791366577,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03781610727310181,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.6963937282562256,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.04262562468647957,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 2.739180088043213,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.03966844081878662,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 2.731743335723877,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.03667006641626358,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 2.768737316131592,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.04043777659535408,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 2.744929313659668,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.044052302837371826,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 2.771634578704834,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.03826981410384178,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 2.7353196144104004,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03758488968014717,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 2.7528347969055176,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.04268691688776016,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 2.7540318965911865,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.041325002908706665,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 2.7647171020507812,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.037344686686992645,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 2.76705265045166,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.042450353503227234,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.7144453525543213,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.04224000498652458,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 2.759082794189453,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.038104742765426636,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 2.7497215270996094,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03811940923333168,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 2.7790403366088867,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.041614845395088196,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 2.7288498878479004,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.03948371857404709,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 2.748359203338623,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.03905073553323746,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 2.7725560665130615,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.041112206876277924,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 2.762186050415039,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03879137709736824,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 2.734889030456543,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.03886166214942932,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 2.8005852699279785,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.04294531047344208,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 2.7776103019714355,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.03838416188955307,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 2.761643409729004,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.038427963852882385,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 2.7586638927459717,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.04066694155335426,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 2.760824680328369,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.037848424166440964,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 2.778289318084717,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.03844791650772095,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 2.749744415283203,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.039958324283361435,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 2.7985734939575195,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03874100372195244,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 2.774866819381714,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.036840081214904785,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 2.805913209915161,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.03725936636328697,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 2.781439781188965,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.04035738855600357,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 2.758686065673828,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.04106197506189346,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 2.771879196166992,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.042643509805202484,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 2.7765140533447266,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.4830546379089355,
+ "eval_runtime": 50.4391,
+ "eval_samples_per_second": 48.415,
+ "eval_steps_per_second": 1.527,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.04445832222700119,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.6106953620910645,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.05079226940870285,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.6472721099853516,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.04819434881210327,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.629481792449951,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.047417085617780685,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.6317343711853027,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.04363427683711052,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.6411972045898438,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.04454582557082176,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.6416287422180176,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.04812787473201752,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.6330764293670654,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.04939486086368561,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.6355319023132324,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.043980687856674194,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.666226863861084,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.040836285799741745,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.6286075115203857,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.042456481605768204,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.6513962745666504,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.042755771428346634,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.662870407104492,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.04120723903179169,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.6305460929870605,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03987514600157738,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.593961715698242,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.038635555654764175,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.6607577800750732,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.04158136621117592,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.6735172271728516,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.03990459814667702,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.6527466773986816,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.04141661524772644,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.6488356590270996,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.041069503873586655,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.664846897125244,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.041106708347797394,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.661078691482544,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.04089801013469696,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.671553134918213,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.042857419699430466,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.631235361099243,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.040352705866098404,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.675701141357422,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.03929511830210686,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.682508945465088,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.03924228623509407,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.708465337753296,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.04071180149912834,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.643385887145996,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.0444309264421463,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.700355291366577,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04204278439283371,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.6900219917297363,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.04269995540380478,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.6792659759521484,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03987446427345276,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.6759490966796875,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.040391139686107635,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.673100471496582,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.044392503798007965,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.7062530517578125,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04163298010826111,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.6927719116210938,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.03959506377577782,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.675417423248291,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.04166583716869354,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.6413064002990723,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.04037674888968468,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 2.7350051403045654,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03836590051651001,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.6984071731567383,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.039869897067546844,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.690366268157959,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.041240107268095016,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.681495189666748,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03860987350344658,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.665367603302002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03899926319718361,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.700815200805664,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03890778869390488,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 2.7328848838806152,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03876316174864769,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.68580961227417,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03872651979327202,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 2.734034776687622,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.04012880101799965,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.700725555419922,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.038113679736852646,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.6887927055358887,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03834610804915428,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 2.7499499320983887,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03771091252565384,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 2.720296859741211,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.03800208866596222,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 2.7197604179382324,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.03881968930363655,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.7176647186279297,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.0374908410012722,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.690718173980713,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.038332752883434296,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.715179920196533,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.038576558232307434,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 2.746676445007324,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.0400109626352787,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.703824043273926,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.037498198449611664,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 2.716090679168701,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.03695759177207947,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.713515520095825,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.03913547471165657,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 2.7210280895233154,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.03884539380669594,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.7117247581481934,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03601778298616409,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 2.7416625022888184,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.037836555391550064,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 2.734532594680786,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03748112544417381,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 2.731274127960205,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.03544784337282181,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 2.736314296722412,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.03774402663111687,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.7095437049865723,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.038037873804569244,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 2.756585121154785,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.03488243371248245,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 2.7442431449890137,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03599962964653969,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.707491397857666,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.03502672165632248,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 2.716686248779297,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.036128927022218704,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.7225708961486816,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.03735365718603134,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 2.7557473182678223,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.035510897636413574,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 2.7392797470092773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03622622787952423,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.7216439247131348,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.04298526421189308,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.7173662185668945,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.5357537269592285,
+ "eval_runtime": 49.8442,
+ "eval_samples_per_second": 48.993,
+ "eval_steps_per_second": 1.545,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.03985700011253357,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.6052660942077637,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04620801657438278,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.5740966796875,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.044712893664836884,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.6004700660705566,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.04012317582964897,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.600916862487793,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.044026028364896774,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.576073169708252,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.043087441474199295,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.626457691192627,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.04223402217030525,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.6100473403930664,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.04012474790215492,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.579037666320801,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.04075590521097183,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.6013243198394775,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.04263768345117569,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.5797343254089355,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.0437036007642746,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.605804443359375,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.04141918942332268,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.6161954402923584,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.042701561003923416,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.588104724884033,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.04051755741238594,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.63607120513916,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.040545061230659485,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.578261613845825,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.04212940111756325,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.61200213432312,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.040179986506700516,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.6383485794067383,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.039657603949308395,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.5792112350463867,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.04174843430519104,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.6256041526794434,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.04303969442844391,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.6175689697265625,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03980931639671326,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.645751476287842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.03945872560143471,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.6274805068969727,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.041664935648441315,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.63307785987854,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.04068799689412117,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.671088695526123,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03808875009417534,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.634873390197754,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.039898037910461426,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.612959384918213,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.039436567574739456,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.6136088371276855,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03854961693286896,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.6199045181274414,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.039016980677843094,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.6532626152038574,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.04286973178386688,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.6704297065734863,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.04259027913212776,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.643263339996338,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.0383823961019516,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.611354351043701,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03800790011882782,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.6505303382873535,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.04109592363238335,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.6408276557922363,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03953855484724045,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.648859977722168,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03878771886229515,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.6458206176757812,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.038982708007097244,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.6521599292755127,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.040703918784856796,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.6366281509399414,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.03949141874909401,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.6558713912963867,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.038015007972717285,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.661327362060547,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.03950005769729614,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.6772499084472656,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.04112942889332771,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.6699628829956055,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03833170235157013,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.639796733856201,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03846743702888489,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.665966033935547,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.04084270820021629,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.6835081577301025,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.039603691548109055,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.645036220550537,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.03755602613091469,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.636746883392334,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03712184354662895,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.655641555786133,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.03938367962837219,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.6591956615448,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.038674671202898026,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.6812376976013184,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.038195330649614334,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.656327486038208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.036538265645504,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.6915717124938965,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03923949599266052,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.7005720138549805,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.037056393921375275,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.6582674980163574,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03739362582564354,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.7053751945495605,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.03783062472939491,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.696133852005005,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.0376109816133976,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.6649022102355957,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.038971349596977234,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.691373348236084,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03856601193547249,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.6802258491516113,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.038097307085990906,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.7032206058502197,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03931786119937897,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.6992850303649902,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03947259858250618,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.698995590209961,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.03853216394782066,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.6777477264404297,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.039491306990385056,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.6987290382385254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03773514926433563,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.6838934421539307,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.03863334655761719,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.7135207653045654,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03979440778493881,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.701352119445801,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.03785509243607521,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.6999247074127197,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.038537297397851944,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 2.751741886138916,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.03880061209201813,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 2.748833179473877,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03738826885819435,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.683391809463501,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.0449042022228241,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.7020788192749023,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.582073211669922,
+ "eval_runtime": 50.3331,
+ "eval_samples_per_second": 48.517,
+ "eval_steps_per_second": 1.53,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.04957824945449829,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.5561342239379883,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.051621027290821075,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.55710768699646,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.04076312482357025,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.577810287475586,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.045077674090862274,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.5761308670043945,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.046679362654685974,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.5405921936035156,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.04333045333623886,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.538569927215576,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.04026757553219795,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.573428153991699,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.04426717758178711,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.5496468544006348,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.04363221675157547,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.563781976699829,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.041887130588293076,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.556375503540039,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.040823422372341156,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.5587844848632812,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.04291372001171112,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.5855326652526855,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.04177108779549599,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.5619170665740967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.04060564562678337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.540727376937866,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.04139444977045059,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.5472490787506104,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.042231716215610504,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.577768087387085,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03968733921647072,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.624655246734619,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.040328193455934525,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.582808494567871,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.03915536776185036,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.6056838035583496,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.04003116860985756,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.578835964202881,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.04006281867623329,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.5787596702575684,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.04027514532208443,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.588151216506958,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03803051635622978,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.5702273845672607,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.04273895546793938,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.6007587909698486,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.040866825729608536,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.6010937690734863,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04029610753059387,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.5835423469543457,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04058460518717766,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.5980067253112793,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04066930338740349,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.6139941215515137,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03889986500144005,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.6235108375549316,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03889729455113411,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.6000213623046875,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.04100755229592323,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.571910858154297,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.04003692790865898,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.6206862926483154,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.039827097207307816,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.608489513397217,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03958888724446297,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.6149001121520996,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.03996104747056961,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.6105237007141113,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03948056325316429,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.6436567306518555,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.04011122137308121,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.6045284271240234,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.042783472687006,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.6284329891204834,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03877517580986023,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.6050562858581543,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03930690884590149,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.612881660461426,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03950059413909912,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.615734100341797,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03758558630943298,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.6356282234191895,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.04032298922538757,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.6540396213531494,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.038972049951553345,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.627459764480591,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.038282424211502075,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.630862236022949,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.038827721029520035,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.6224913597106934,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03931719809770584,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.6378655433654785,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03871314600110054,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.64253568649292,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03832100331783295,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.599008321762085,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.0384882353246212,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.655564785003662,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.038193441927433014,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.637547016143799,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03857916593551636,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.626636505126953,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03885370120406151,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.6606898307800293,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.038665495812892914,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.620786428451538,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03897741064429283,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.633166790008545,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.039391979575157166,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.6339595317840576,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03873669356107712,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.651726722717285,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.037708647549152374,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.652022361755371,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.03909820690751076,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.6521129608154297,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.038191623985767365,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.683443784713745,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03814183920621872,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.676152229309082,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03845800459384918,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.6696252822875977,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.038761205971241,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.6575536727905273,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0382290855050087,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.6571602821350098,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03818494826555252,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.651632785797119,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03811158239841461,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.6381514072418213,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03911985829472542,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.6576035022735596,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03915153071284294,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.6679182052612305,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.03922194242477417,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.658327102661133,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0385582372546196,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.685403347015381,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.03856402263045311,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.631997585296631,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.045574504882097244,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.6455907821655273,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.630706787109375,
+ "eval_runtime": 50.343,
+ "eval_samples_per_second": 48.507,
+ "eval_steps_per_second": 1.53,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.04299811273813248,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.545808792114258,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.045796580612659454,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.5412497520446777,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.04268919304013252,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.4988510608673096,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0424925871193409,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.525517463684082,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.04330209642648697,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.5031142234802246,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.041762471199035645,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.5395960807800293,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.04157201945781708,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.5294952392578125,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.04115210101008415,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.5068864822387695,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.042207006365060806,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.5413942337036133,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.04241922125220299,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.54648756980896,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.04021521657705307,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.5409865379333496,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.04181341454386711,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.5094356536865234,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.04286786913871765,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.5473742485046387,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.041187625378370285,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.560746669769287,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.04282910376787186,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.5277230739593506,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.04170593246817589,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.540250778198242,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.04097793623805046,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.5618107318878174,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.04386851564049721,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.5429463386535645,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.0451020784676075,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.548234462738037,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03941088169813156,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.530017375946045,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.04631779342889786,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.5817222595214844,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.048373859375715256,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.5460047721862793,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.04272238537669182,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.554980754852295,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.041539616882801056,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.579061985015869,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.04433664306998253,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.5660667419433594,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.0416690930724144,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.5579190254211426,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.039509691298007965,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.5495524406433105,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04351760447025299,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.5485236644744873,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.043173156678676605,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.5312328338623047,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03899776190519333,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.600411891937256,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.04337446019053459,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.5862069129943848,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03929191455245018,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.5661725997924805,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04101184010505676,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.5867369174957275,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.04147906228899956,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.5857348442077637,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.04191290959715843,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.5731992721557617,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.040721844881772995,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.5813965797424316,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.04001890867948532,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.5747785568237305,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.03962702676653862,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.5933737754821777,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.039932604879140854,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.576674461364746,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.039338432252407074,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.5782008171081543,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.038861170411109924,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.610973358154297,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.039563652127981186,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.601799726486206,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.03961700573563576,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.575131893157959,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03986692801117897,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.615356922149658,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03836435824632645,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.5949208736419678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03855856508016586,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.582308292388916,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03856024891138077,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.6111443042755127,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.039093017578125,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.5793564319610596,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.038725245743989944,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.6067581176757812,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.0380857028067112,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.646773338317871,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03855524957180023,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.5918726921081543,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.037457797676324844,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.617043972015381,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03869820013642311,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.6114768981933594,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03711248189210892,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.5982959270477295,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.038945212960243225,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.6045446395874023,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03832259029150009,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.6037979125976562,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03934606537222862,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.6163489818573,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.03900086134672165,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.6069135665893555,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03861298784613609,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.606722831726074,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.038183990865945816,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.623232841491699,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03909875825047493,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.6339173316955566,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03840210661292076,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.622582197189331,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03828253969550133,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.5958876609802246,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0381259024143219,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.5990607738494873,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03966856002807617,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.607971668243408,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.037702202796936035,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.6083734035491943,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.038444772362709045,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.594470977783203,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.03691141679883003,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.613913059234619,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.038606252521276474,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.605672836303711,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.037440285086631775,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.6157281398773193,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.037814900279045105,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.6148059368133545,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.043760623782873154,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.5653724670410156,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.68303108215332,
+ "eval_runtime": 50.4878,
+ "eval_samples_per_second": 48.368,
+ "eval_steps_per_second": 1.525,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.04217155650258064,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.4836583137512207,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.042030464857816696,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.4783711433410645,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.04258885607123375,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.4772050380706787,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.04180571064352989,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.47452974319458,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.0409804992377758,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.5100820064544678,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.043249111622571945,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.4972734451293945,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.039890021085739136,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.4979066848754883,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.04291659593582153,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.514129638671875,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.04137815535068512,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.5026347637176514,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.04209413006901741,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.522614002227783,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.041909098625183105,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.4863014221191406,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.04288608953356743,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.4999732971191406,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.04160395637154579,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.50962495803833,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.0438438281416893,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.529510021209717,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.038461409509181976,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.520538806915283,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.04244046285748482,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.478781223297119,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.040004923939704895,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.496654510498047,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.04082861170172691,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.518338680267334,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.040987443178892136,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.4999513626098633,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.03953491151332855,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.520509719848633,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03990933299064636,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.5096051692962646,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.04095710813999176,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.5433297157287598,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.038632433861494064,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.5112204551696777,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.040502630174160004,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.51623272895813,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.0398704893887043,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.512924909591675,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.040709007531404495,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.554586410522461,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.0406210832297802,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.532557487487793,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.03889348730444908,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.525108575820923,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.04015064612030983,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.535057544708252,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.041169796139001846,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.5659022331237793,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.038989391177892685,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.5369086265563965,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04099688306450844,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.5184175968170166,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039829690009355545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.560692071914673,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.04020677134394646,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.510549783706665,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.04203888401389122,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.5451645851135254,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03780362010002136,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.555356502532959,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.041025105863809586,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.52476167678833,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.039431892335414886,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.544099807739258,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.04021573066711426,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.5828700065612793,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.04179903864860535,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.524014472961426,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03899601846933365,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.5616817474365234,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.04191318526864052,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.5606822967529297,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.041458819061517715,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.5735056400299072,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.04002033919095993,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.571634292602539,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.040181905031204224,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.5569653511047363,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.038881316781044006,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.530872344970703,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.04001537337899208,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.5545527935028076,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.039509210735559464,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.55985164642334,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03836548700928688,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.55220890045166,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.04025840759277344,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.5837690830230713,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03974878787994385,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.558772563934326,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.039377935230731964,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.5522451400756836,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.04093307629227638,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.5774669647216797,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.04037470743060112,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.5393733978271484,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03933698311448097,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.55163311958313,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.03948088735342026,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.5783205032348633,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03987252712249756,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.5497002601623535,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.03954288363456726,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.5974178314208984,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.039707835763692856,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.5708115100860596,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03880715370178223,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.540225028991699,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.038271792232990265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.5887298583984375,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03849945217370987,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.5666351318359375,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.03806721419095993,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.5850937366485596,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.0387803390622139,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.6387054920196533,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03776047006249428,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.5704126358032227,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03837171196937561,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.606600761413574,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.036957480013370514,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.5789999961853027,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.03784535825252533,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.590054988861084,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.037523914128541946,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.5862486362457275,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.03855528682470322,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.5896804332733154,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.038172684609889984,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.606858253479004,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.04597382992506027,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.5731430053710938,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.7312445640563965,
+ "eval_runtime": 50.1493,
+ "eval_samples_per_second": 48.695,
+ "eval_steps_per_second": 1.535,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.040082935243844986,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.45803165435791,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.04075422137975693,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.4373645782470703,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.042375173419713974,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.445497751235962,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.039676643908023834,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.4527292251586914,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.040263883769512177,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.443726062774658,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.040542446076869965,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.509228229522705,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.039546187967061996,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.4740281105041504,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.0399077869951725,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.4613571166992188,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.039962101727724075,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.468287944793701,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.038253072649240494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.4556660652160645,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.0400204136967659,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.501220464706421,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03921268507838249,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.4513282775878906,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03845704346895218,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.4371821880340576,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.04014671593904495,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.4713072776794434,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03871054947376251,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.498952865600586,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0389760285615921,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.479438543319702,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.03928804025053978,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.5111570358276367,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03890380635857582,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.492244005203247,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03893847391009331,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.4832241535186768,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.038555655628442764,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.473994493484497,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.03958532586693764,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.527578115463257,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.038863442838191986,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.5026330947875977,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.040074966847896576,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.5063109397888184,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.039247799664735794,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.4882097244262695,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.0395796075463295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.4660420417785645,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.03938698396086693,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.479153871536255,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.040745142847299576,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.500609874725342,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03822821378707886,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.5150585174560547,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.040366094559431076,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.5044541358947754,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03831731155514717,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.5147018432617188,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.039682671427726746,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.507406711578369,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03898734226822853,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.4951791763305664,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.03892234340310097,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.512556791305542,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.04019404947757721,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.5360331535339355,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03920825198292732,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.548699378967285,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.0385311096906662,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.476630687713623,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03797920420765877,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.5356290340423584,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.040193237364292145,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.4933314323425293,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03881823644042015,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.5130982398986816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.04049588739871979,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.536677837371826,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.03893541917204857,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.517401695251465,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.039656784385442734,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.5111303329467773,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.04180547967553139,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.5226423740386963,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03851541131734848,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.5222482681274414,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.040863897651433945,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.552680253982544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03873211517930031,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.5296826362609863,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.039825811982154846,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.542590856552124,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.039727456867694855,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.545682191848755,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03819560632109642,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.4885478019714355,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.038781970739364624,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.5392041206359863,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.037839289754629135,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.50968337059021,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03794427216053009,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.5143909454345703,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.038396988064050674,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.528244733810425,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03887055069208145,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.5750365257263184,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03852991387248039,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.5416150093078613,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.037425361573696136,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.5320820808410645,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.038594916462898254,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.5445098876953125,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.036525335162878036,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.5580685138702393,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.038885194808244705,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.5431809425354004,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.036410942673683167,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.5070929527282715,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03869079798460007,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.533327579498291,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03747229650616646,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.5502867698669434,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.038209374994039536,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.525596857070923,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03808588162064552,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.5384087562561035,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03895717114210129,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.536189556121826,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.037719666957855225,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.5489635467529297,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.038963451981544495,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.546940803527832,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03746771812438965,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.529160976409912,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.03972191363573074,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.5499086380004883,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03742365911602974,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.5488295555114746,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03897562995553017,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.5693445205688477,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.046561457216739655,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.5275135040283203,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.774092674255371,
+ "eval_runtime": 50.243,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.04310769960284233,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 2.455329418182373,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.04115631803870201,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 2.4503700733184814,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.04250654950737953,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 2.4287707805633545,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.04200764000415802,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 2.408581256866455,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.04174887016415596,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 2.4646167755126953,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.04023091495037079,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 2.452735662460327,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.04020898789167404,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 2.4360930919647217,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.04034535959362984,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 2.4493408203125,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.038866039365530014,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 2.444572925567627,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.040859535336494446,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 2.4709620475769043,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.038747649639844894,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 2.502328872680664,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.04010903835296631,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 2.452136993408203,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.03887498751282692,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 2.4268274307250977,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.039471857249736786,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 2.4390530586242676,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.039436157792806625,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 2.457540273666382,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.03839588910341263,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 2.4189352989196777,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.03989185765385628,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 2.4496283531188965,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.038148149847984314,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 2.430187225341797,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.03895123675465584,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 2.456756591796875,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.03771301358938217,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 2.4913525581359863,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.039358749985694885,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 2.441742420196533,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.03876911476254463,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 2.4574320316314697,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.037895120680332184,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 2.455977201461792,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.04011163488030434,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 2.4823124408721924,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.03813024237751961,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 2.4586939811706543,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.038185495883226395,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 2.477020502090454,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.03910696506500244,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 2.4435808658599854,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.03780550882220268,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 2.4697678089141846,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.04022105038166046,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 2.4914755821228027,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.03748264163732529,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 2.4811134338378906,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.04051728919148445,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 2.483469247817993,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.03732391819357872,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 2.44366455078125,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.040184859186410904,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 2.4943008422851562,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.038120243698358536,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 2.5120961666107178,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03963751718401909,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 2.454674482345581,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.03934590518474579,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 2.4781625270843506,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03906507045030594,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 2.499715805053711,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03866249695420265,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 2.4727044105529785,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.039640989154577255,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 2.472585678100586,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.038402147591114044,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 2.4913134574890137,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.038213010877370834,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 2.4726927280426025,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.038407694548368454,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 2.4980733394622803,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.03732699900865555,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 2.452296733856201,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.03862643241882324,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 2.500091552734375,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03833173215389252,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 2.48945689201355,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.0383443720638752,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 2.490124464035034,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03888486325740814,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 2.486175298690796,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.039034388959407806,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 2.5080575942993164,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.0378594771027565,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 2.487119674682617,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.03863426670432091,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 2.530083179473877,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03876124694943428,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 2.4840517044067383,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.03762609139084816,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 2.5303611755371094,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.03891080617904663,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 2.481356620788574,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.037616338580846786,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 2.483151435852051,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.03813810646533966,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 2.5110888481140137,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.03819670155644417,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 2.4839940071105957,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.03859946131706238,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 2.515028953552246,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.039357881993055344,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 2.5162839889526367,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.037815842777490616,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 2.507180690765381,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.03841688856482506,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 2.475879669189453,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.03819884732365608,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 2.5124359130859375,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.03893854841589928,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 2.5462636947631836,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.0385054275393486,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 2.510305881500244,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.038480646908283234,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 2.5255255699157715,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.037873707711696625,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 2.512570858001709,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03887968510389328,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 2.500234603881836,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.03837333992123604,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 2.4938583374023438,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.03967248648405075,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 2.556959629058838,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03754139691591263,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 2.4908037185668945,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.038954541087150574,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 2.534503936767578,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.038607776165008545,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 2.51754093170166,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.04736033082008362,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 2.5003013610839844,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.816370964050293,
+ "eval_runtime": 68.4143,
+ "eval_samples_per_second": 35.694,
+ "eval_steps_per_second": 1.125,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.04273151233792305,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 2.4306299686431885,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.04039552062749863,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 2.409675121307373,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.04268364980816841,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 2.4427895545959473,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.04097979888319969,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 2.420304775238037,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.039833199232816696,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 2.42132568359375,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.041350919753313065,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 2.412353038787842,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.038745488971471786,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 2.454707622528076,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.04082830250263214,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 2.38602876663208,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.03963732719421387,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 2.383242130279541,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.03869694471359253,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 2.439220666885376,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.03943706303834915,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 2.402729034423828,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.03850548341870308,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 2.408879041671753,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.03907497599720955,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 2.399122714996338,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.03952746093273163,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 2.394047260284424,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.03915352001786232,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 2.4356861114501953,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.038304653018713,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 2.4435911178588867,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.038589294999837875,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 2.464827060699463,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.03882160037755966,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 2.430630922317505,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.03818007558584213,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 2.448643207550049,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.0377669632434845,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 2.445988655090332,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.03796133026480675,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 2.404486894607544,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.03926001489162445,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 2.4466686248779297,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 2.434370756149292,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.03794293478131294,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 2.4526515007019043,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.03817367926239967,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 2.454181671142578,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.03743444010615349,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 2.4051332473754883,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.03823934122920036,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 2.440950870513916,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.037680771201848984,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 2.424182415008545,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.03805804252624512,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 2.436995506286621,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.03762711212038994,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 2.4504661560058594,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.038916368037462234,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 2.456270694732666,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.03798242285847664,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 2.4370179176330566,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.03832940757274628,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 2.4631423950195312,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.03953246399760246,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 2.474728584289551,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.03914801776409149,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 2.455716609954834,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.039025478065013885,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 2.457324981689453,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.038878221064805984,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 2.4345664978027344,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.03928461670875549,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 2.4644553661346436,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.038175635039806366,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 2.486578941345215,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.039955589920282364,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 2.4515676498413086,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.03977454826235771,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 2.476283073425293,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.0410095751285553,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 2.4638071060180664,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.039121199399232864,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 2.457387924194336,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.039507295936346054,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 2.421072006225586,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03740872070193291,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 2.4567294120788574,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.03857016563415527,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 2.4649035930633545,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03915343061089516,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 2.4596285820007324,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.038795482367277145,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 2.4964542388916016,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.03887787461280823,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 2.4733099937438965,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.03899268060922623,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 2.4697184562683105,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03819253295660019,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 2.496642589569092,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03926996886730194,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 2.47452974319458,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03837045282125473,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 2.483902931213379,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.03842247277498245,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 2.454066276550293,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.036577045917510986,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 2.458678960800171,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03910977020859718,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 2.483485221862793,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.038027506321668625,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 2.5040090084075928,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03782195970416069,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 2.4679486751556396,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.03840578719973564,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 2.48102068901062,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.036967333406209946,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 2.46134090423584,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.037848636507987976,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 2.4719927310943604,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.038168102502822876,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 2.4603271484375,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.037119310349226,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 2.4660191535949707,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.037567950785160065,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 2.494511127471924,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03776083514094353,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 2.456225872039795,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03801901638507843,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 2.505387306213379,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03765110298991203,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 2.507884979248047,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03827488794922829,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 2.4975950717926025,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.036955684423446655,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 2.487380266189575,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.03759743273258209,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 2.4582109451293945,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.037621885538101196,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 2.4814324378967285,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.045963410288095474,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 2.4642741680145264,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.863770008087158,
+ "eval_runtime": 68.4697,
+ "eval_samples_per_second": 35.665,
+ "eval_steps_per_second": 1.125,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.04062966629862785,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 2.442172050476074,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.038287948817014694,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 2.405311107635498,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.04026542603969574,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 2.4099082946777344,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.038703594356775284,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 2.376422166824341,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.037480585277080536,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 2.3852548599243164,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.03875007852911949,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 2.3894126415252686,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0372033454477787,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 2.3987064361572266,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.039135001599788666,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 2.411956787109375,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.03719179704785347,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 2.4044156074523926,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.037828974425792694,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 2.3910250663757324,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.03775754198431969,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 2.387831687927246,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.038350630551576614,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 2.40877103805542,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.03774121031165123,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 2.3962411880493164,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.038014668971300125,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 2.40413498878479,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.0375790148973465,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 2.3981637954711914,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.03802540898323059,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 2.4116415977478027,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.036843009293079376,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 2.3851754665374756,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.03665459156036377,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 2.383061408996582,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.03727758675813675,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 2.39738392829895,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.0375785157084465,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 2.4133663177490234,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.03708641231060028,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 2.428150177001953,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.03767220303416252,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 2.4267594814300537,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.0371648408472538,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 2.4222769737243652,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.03781408444046974,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 2.4184913635253906,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.03752940893173218,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 2.4109671115875244,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.03846004977822304,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 2.421489715576172,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.03720737248659134,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 2.4386188983917236,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.03695685416460037,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 2.4398770332336426,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.03825104609131813,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 2.430121898651123,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.03710686042904854,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 2.4191856384277344,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.037194497883319855,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 2.4068493843078613,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.03661312535405159,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 2.426170825958252,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.03765978291630745,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 2.455047130584717,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.03684741631150246,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 2.3987529277801514,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.03810873627662659,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 2.362081527709961,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.03709506243467331,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 2.4123587608337402,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.03859175369143486,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 2.4016692638397217,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.036426808685064316,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 2.403423309326172,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.03851226344704628,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 2.4468936920166016,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.036739759147167206,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 2.444204807281494,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.03750891238451004,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 2.4284138679504395,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.036855414509773254,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 2.4189958572387695,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.036995720118284225,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 2.4465389251708984,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.037109553813934326,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 2.4380016326904297,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03725552186369896,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 2.468137264251709,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03768225386738777,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 2.460725784301758,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.03695973381400108,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 2.4227092266082764,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.036497391760349274,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 2.4621572494506836,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03706617280840874,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 2.464228391647339,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.037703242152929306,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 2.4499683380126953,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.036480505019426346,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 2.4461894035339355,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.037404678761959076,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 2.462559700012207,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.037228964269161224,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 2.463881492614746,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03728632256388664,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 2.432051658630371,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.03713570162653923,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 2.451521396636963,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03734629601240158,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 2.4267449378967285,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.037481050938367844,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 2.4528884887695312,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03706306219100952,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 2.45501446723938,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.03735101595520973,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 2.433983087539673,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.03629044443368912,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 2.418869972229004,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.03723834827542305,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 2.4536566734313965,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.03613651916384697,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 2.4344124794006348,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.037208374589681625,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 2.4624600410461426,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.03710145130753517,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 2.4674739837646484,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.036229804158210754,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 2.4386086463928223,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.03795938938856125,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 2.4728736877441406,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03692123666405678,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 2.4710044860839844,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.036502107977867126,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 2.4429149627685547,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.03732654079794884,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 2.4504051208496094,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.037006136029958725,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 2.4577293395996094,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.0361783392727375,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 2.464695453643799,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.046150077134370804,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 2.4836559295654297,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.900355339050293,
+ "eval_runtime": 50.0176,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.03956114128232002,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 2.349515438079834,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.03587425872683525,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 2.3753416538238525,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.039466626942157745,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 2.400040626525879,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.03677786886692047,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 2.392055034637451,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.03721640259027481,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 2.3724422454833984,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.03862878680229187,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 2.397376298904419,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.03677244111895561,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 2.407611846923828,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.03830968216061592,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 2.3727073669433594,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.03766937181353569,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 2.361821413040161,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.0380096398293972,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 2.398216724395752,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.03683304786682129,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 2.370427370071411,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.038685187697410583,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 2.3790807723999023,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.03769568353891373,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 2.4126696586608887,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.03817220404744148,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 2.410825252532959,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.03754562512040138,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 2.373126983642578,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.03772398829460144,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 2.411992311477661,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.03720736876130104,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 2.4148311614990234,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.03782934322953224,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 2.39084529876709,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.03748996928334236,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 2.4023995399475098,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.03633532300591469,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 2.3859987258911133,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.03689171373844147,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 2.3874263763427734,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.03714725002646446,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 2.396787643432617,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.035764552652835846,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 2.353877544403076,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.037356097251176834,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 2.4033477306365967,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.036599431186914444,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 2.4072070121765137,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.036051809787750244,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 2.4134693145751953,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.03683406487107277,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 2.413142681121826,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.03556712716817856,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 2.35775089263916,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.03649084270000458,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 2.392144203186035,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.03678001090884209,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 2.4252169132232666,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.03567516431212425,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 2.4144906997680664,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.03674531355500221,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 2.4137630462646484,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.035740066319704056,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 2.3847055435180664,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.036076631397008896,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 2.3834192752838135,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.03575264289975166,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 2.399003028869629,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.03607596829533577,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 2.4216341972351074,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.03623746708035469,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 2.4010164737701416,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.036404695361852646,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 2.425797700881958,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.03555027395486832,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 2.4046592712402344,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03598731383681297,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 2.425351142883301,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.03695760667324066,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 2.4287943840026855,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.036055464297533035,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 2.4003586769104004,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.03603188320994377,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 2.4314146041870117,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.036420490592718124,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 2.401968479156494,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.035902198404073715,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 2.419374942779541,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.036591146141290665,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 2.411024808883667,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.03640354424715042,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 2.4238622188568115,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.036272309720516205,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 2.425605297088623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03576953709125519,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 2.412781238555908,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.03561127558350563,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 2.4257028102874756,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.035675641149282455,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 2.4074487686157227,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.035887718200683594,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 2.4378819465637207,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.035352110862731934,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 2.4102087020874023,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.035472944378852844,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 2.4218528270721436,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.03595568612217903,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 2.411935329437256,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03599581494927406,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 2.446230411529541,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.03611650690436363,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 2.4493770599365234,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.03564528003334999,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 2.4211535453796387,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03591608256101608,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 2.4136404991149902,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.035632189363241196,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 2.427894115447998,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03643954172730446,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 2.4349703788757324,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.036033231765031815,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 2.4253716468811035,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.0366411916911602,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 2.4237148761749268,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03559594601392746,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 2.403365135192871,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03642554208636284,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 2.4096932411193848,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.03650658205151558,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 2.3886308670043945,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.035379569977521896,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 2.377666473388672,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.03648681566119194,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 2.4412119388580322,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.036438021808862686,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 2.422165870666504,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.03647967055439949,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 2.4225406646728516,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03626762330532074,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 2.4280452728271484,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.04576266556978226,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 2.473209857940674,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.933586597442627,
+ "eval_runtime": 50.3073,
+ "eval_samples_per_second": 48.542,
+ "eval_steps_per_second": 1.531,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.03741564229130745,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 2.356867790222168,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.03606380894780159,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 2.399956703186035,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.037560511380434036,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 2.3565869331359863,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.03670021519064903,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 2.3884243965148926,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.03633797913789749,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 2.3388514518737793,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.036955300718545914,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 2.370142936706543,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.03551044315099716,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 2.3831279277801514,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.03706502169370651,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 2.373241901397705,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.03601884841918945,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 2.4030237197875977,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.0370602123439312,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 2.401350498199463,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.03567498177289963,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 2.387460470199585,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.0358564667403698,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 2.35788631439209,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.03606206178665161,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 2.3752503395080566,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.03567115589976311,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 2.3544509410858154,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.0361095666885376,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 2.363283634185791,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.03509826213121414,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 2.3433051109313965,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.03592020273208618,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 2.3747477531433105,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.03598441928625107,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 2.4157907962799072,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.03556008264422417,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 2.3816566467285156,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.035836536437273026,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 2.371532917022705,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.035036537796258926,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 2.3769121170043945,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.03581574559211731,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 2.3590636253356934,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.035967014729976654,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 2.3859806060791016,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.03528635948896408,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 2.387582778930664,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.03585169464349747,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 2.3773069381713867,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.03569261357188225,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 2.4134440422058105,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.03513651713728905,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 2.410511016845703,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.03496205061674118,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 2.33015513420105,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.0346609428524971,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 2.3364882469177246,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.03536591678857803,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 2.3825058937072754,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.03536584600806236,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 2.356165647506714,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.0351298563182354,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 2.3813717365264893,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.03520410135388374,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 2.407329559326172,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.03543079271912575,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 2.4088997840881348,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.03551093488931656,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 2.3831825256347656,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.0357256755232811,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 2.4320068359375,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.03537716343998909,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 2.399661064147949,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.0358147956430912,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 2.4017081260681152,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.035032857209444046,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 2.3979480266571045,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.034801892936229706,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 2.3917276859283447,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.03565487265586853,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 2.3940529823303223,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.03497626259922981,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 2.3955321311950684,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.03519856557250023,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 2.40267276763916,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03468102216720581,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 2.360779285430908,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.03541756793856621,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 2.3801469802856445,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.03534531593322754,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 2.4282922744750977,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.035485196858644485,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 2.3939390182495117,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.03595820814371109,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 2.4026193618774414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.035464588552713394,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 2.3880958557128906,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.035215772688388824,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 2.4125471115112305,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.035822439938783646,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 2.372713088989258,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.03570287302136421,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 2.4120328426361084,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03500843420624733,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 2.4093079566955566,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.035660404711961746,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 2.390624761581421,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.035391755402088165,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 2.4110302925109863,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.03526972606778145,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 2.3838064670562744,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.03585533797740936,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 2.4087419509887695,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.035079073160886765,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 2.3899316787719727,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.03600093722343445,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 2.3978629112243652,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.03578227385878563,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 2.388434410095215,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.035483088344335556,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 2.4380664825439453,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.03560888022184372,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 2.37380051612854,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03534746542572975,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 2.381844997406006,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.03493297100067139,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 2.415374279022217,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.03512784466147423,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 2.420445442199707,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.03524825721979141,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 2.4160499572753906,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.03456146642565727,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 2.3830275535583496,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.03503827750682831,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 2.3855955600738525,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.0347282849252224,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 2.3743722438812256,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.034973081201314926,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 2.3746042251586914,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.035174764692783356,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 2.4262585639953613,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.04474984109401703,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 2.4101905822753906,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-3240/training_args.bin b/runs/baseline-lr6e-4/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-360/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-360/config.json b/runs/baseline-lr6e-4/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-360/generation_config.json b/runs/baseline-lr6e-4/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-360/model.safetensors b/runs/baseline-lr6e-4/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3f92a04d0e410c0535e3e10c27be816305783a9a
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f889923d769c7c2259b5688b6e5d983149c7071d1cba61be566a385633de874
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-360/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..9127c910f5bd55612ebbfd2b69b60379bff4e76b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5840da8af6359d895d7b26d861732c4ac4ccf9f39b750c9298e8a84f00343d0d
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-360/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3a2bb760d0b0b50f4b7b6980626fda172a127f68
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9627a7b92eeed978894313d8642baf0ecdcd808f2102543d8b58136102ad5997
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-360/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7b307a1ab4859d8d838e7d20293e5eb15985549a
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d79c621c2f337ae714092486c08d5a224dca6ddc4285fb0014e9b648d0c9cae
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-360/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..be1c46bbc9ac67b626f5e0bb3dac16ba107193bc
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79ed78fca474f0ed71de3aa751471c35bef733680fc53c36641881688dd58ce5
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-360/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-360/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-360/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..3d013c3d3b5d40d49e631044fafc9e1fae3e9518
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-360/training_args.bin b/runs/baseline-lr6e-4/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3600/config.json b/runs/baseline-lr6e-4/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3600/generation_config.json b/runs/baseline-lr6e-4/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3600/model.safetensors b/runs/baseline-lr6e-4/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0f4fb8c475739543514fa6d98ce75efd8b62ffbd
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:43f71c39381675f0472ef0aa200ddc23eab6211ab713a0325803a38f0137fa18
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..43624abd5c891f5379aa03e665f59303f42823fb
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f669118a90456de263b028dea88bbdbdc1d85419c6bef099e813e1369860162
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..42e5fb760a4884c24f3899e0e2c34f9ab7d35d5e
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9abac844de24b211d8b88d44e1866f089edee417850520a358afe34f866a821
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d6f10c7be65a25152763463abf33eb700d784288
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68ba205d24a50bf8cdf4686014dfa7b5557eb04aefa63431dced1c3d75cbacab
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..982d7b397b075cae944d790620cb0dfad6289952
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fcae2666f52aa083cc9b774f768ba87d551f0234d3e7800a3f2040f0f5905852
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3600/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-3600/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a90a78aec7a95782fb15b869cb68004e269d39c4
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/trainer_state.json
@@ -0,0 +1,25626 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 50.0,
+ "eval_steps": 500,
+ "global_step": 3600,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013973799126637555,
+ "grad_norm": 0.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.35489559173584,
+ "eval_runtime": 50.272,
+ "eval_samples_per_second": 48.576,
+ "eval_steps_per_second": 1.532,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.031124763190746307,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.132309913635254,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.03193129226565361,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.133903503417969,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.0307831559330225,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.140835762023926,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.03443930670619011,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.083686828613281,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.03889818862080574,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.140020370483398,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.0474570132791996,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.1538543701171875,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.045417603105306625,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.151947975158691,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.0436638668179512,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.120928764343262,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03715284541249275,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.156473159790039,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03567575290799141,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.103484153747559,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.04076701030135155,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.140463829040527,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.04362097755074501,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.145817756652832,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.042601823806762695,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.177658557891846,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.04041797295212746,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.174813270568848,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.03835931792855263,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.156354904174805,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.043306607753038406,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.16716194152832,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.04624763876199722,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.144227981567383,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.043354082852602005,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.156787872314453,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.032583754509687424,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.117024898529053,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.03293786197900772,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.149642467498779,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.03053724579513073,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.079998016357422,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.023870054632425308,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.099692344665527,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023715248331427574,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.12397575378418,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021784329786896706,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.174464225769043,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.021881500259041786,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.123681545257568,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.02636527270078659,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.125915050506592,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.02682533860206604,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.117312431335449,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.023051053285598755,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.140021800994873,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020738769322633743,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.1195478439331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.021225830540060997,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.132204055786133,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02027449943125248,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.08323335647583,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.018574194982647896,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.1184258460998535,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.017778631299734116,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.096519470214844,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.017211589962244034,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.074711322784424,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.01712372899055481,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.062078475952148,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.016510508954524994,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.090372085571289,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.016379551962018013,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.074476718902588,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01501899491995573,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.10807991027832,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016580287367105484,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.075404167175293,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01888354681432247,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.08011531829834,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.01988234929740429,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.054414749145508,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.021226657554507256,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.1085734367370605,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.02260129526257515,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.05906867980957,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.021820727735757828,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.07425594329834,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.01987456902861595,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.066181182861328,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.019016634672880173,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.057435989379883,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.016884412616491318,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.082771301269531,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.01568189449608326,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.077384948730469,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.018206290900707245,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.086204528808594,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.022494740784168243,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.059918403625488,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.025058256462216377,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.072916030883789,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.026619093492627144,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.090442657470703,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.029228510335087776,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.067991256713867,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03542686626315117,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.048699378967285,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.037122610956430435,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.092565536499023,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.034079086035490036,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.059904098510742,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03469939902424812,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.066285133361816,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.03151216357946396,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.066356658935547,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.02942678891122341,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.078914642333984,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.03014707937836647,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.065041542053223,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.03063458949327469,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.071393013000488,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027836177498102188,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.0611162185668945,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.030694905668497086,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.090199947357178,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.030993055552244186,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.1084442138671875,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.029077356681227684,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.068925380706787,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.030594920739531517,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.071974277496338,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.029550909996032715,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.065114974975586,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.02688552439212799,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.073942184448242,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.023325562477111816,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.057799339294434,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.02340572699904442,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.081209182739258,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.021593743935227394,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.065289497375488,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.020634647458791733,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.052119255065918,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.254138946533203,
+ "eval_runtime": 50.1038,
+ "eval_samples_per_second": 48.739,
+ "eval_steps_per_second": 1.537,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.022378545254468918,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 3.9870786666870117,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.022996656596660614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 3.958235263824463,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.022215500473976135,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 3.95530366897583,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.022508030757308006,
+ "learning_rate": 0.00054405910314802,
+ "loss": 3.96621036529541,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02191581204533577,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 3.9956281185150146,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.022906186059117317,
+ "learning_rate": 0.000543747262591706,
+ "loss": 3.981632947921753,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.02479357086122036,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 3.9847280979156494,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.030314408242702484,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 3.9810800552368164,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.03162582218647003,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 3.9719600677490234,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03117245063185692,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 3.9917190074920654,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.030645038932561874,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 3.9792771339416504,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.029586590826511383,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 3.9645309448242188,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.02915118634700775,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 3.9983315467834473,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.028775416314601898,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 3.960073471069336,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028936471790075302,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 3.9942636489868164,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.030635623261332512,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.000850677490234,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.030595777556300163,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 3.9918460845947266,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.028435133397579193,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 3.990330219268799,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.031277135014534,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.012889862060547,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03622065484523773,
+ "learning_rate": 0.000541542711134479,
+ "loss": 3.9899744987487793,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03408419340848923,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 3.970384120941162,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03721758350729942,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 3.9713003635406494,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03913702070713043,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 3.9948883056640625,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.03515280783176422,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 3.98297381401062,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.03192244470119476,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 3.975196361541748,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02986622415482998,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.02484130859375,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.02848186530172825,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.006783962249756,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.030694125220179558,
+ "learning_rate": 0.000540266032410741,
+ "loss": 3.9795711040496826,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.031087324023246765,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.00234842300415,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.026522058993577957,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 3.9873547554016113,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024380605667829514,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 3.97337007522583,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.027473580092191696,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 3.953691244125366,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.024222562089562416,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 3.9660232067108154,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.022959580644965172,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.013556480407715,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.024191364645957947,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 3.9698894023895264,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.02605738863348961,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.010561943054199,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.026163099333643913,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 3.9526543617248535,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.022305577993392944,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 3.9677064418792725,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.025229478254914284,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 3.9315109252929688,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.02274019457399845,
+ "learning_rate": 0.000538328095851792,
+ "loss": 3.9873335361480713,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.020717822015285492,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 3.927302837371826,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02112145908176899,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 3.9491677284240723,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.022677212953567505,
+ "learning_rate": 0.000537839336909727,
+ "loss": 3.9856343269348145,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.0229820366948843,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.014215469360352,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.02202669158577919,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 3.9642529487609863,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.02099671959877014,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 3.979299545288086,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.019412942230701447,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 3.9520087242126465,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.020911911502480507,
+ "learning_rate": 0.000537020956314485,
+ "loss": 3.9649767875671387,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.0203660000115633,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 3.9199836254119873,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017603818327188492,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 3.957500457763672,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.017629100009799004,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 3.959700584411621,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.014728730544447899,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 3.935751438140869,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.018194397911429405,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 3.948047637939453,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.01683131232857704,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 3.9376115798950195,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.017849553376436234,
+ "learning_rate": 0.000535867308253152,
+ "loss": 3.983829975128174,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.01918012835085392,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 3.9546289443969727,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.019988376647233963,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 3.9585604667663574,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.020655304193496704,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 3.944406509399414,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.017353933304548264,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 3.9869871139526367,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01833125203847885,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 3.946782350540161,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.018337992951273918,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 3.9654083251953125,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.02053251303732395,
+ "learning_rate": 0.000534704466989222,
+ "loss": 3.9561471939086914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.02531464770436287,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 3.938969612121582,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.02499827928841114,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 3.9746756553649902,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02126365341246128,
+ "learning_rate": 0.000534203303565406,
+ "loss": 3.904385566711426,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.024746296927332878,
+ "learning_rate": 0.000534035876358542,
+ "loss": 3.9537062644958496,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0262793879956007,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 3.919772148132324,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.02673698402941227,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 3.9527997970581055,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.026428116485476494,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 3.9738759994506836,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.024996649473905563,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 3.9824798107147217,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.023341497406363487,
+ "learning_rate": 0.000533195950905842,
+ "loss": 3.9422385692596436,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.02899492159485817,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 3.9693832397460938,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.184160232543945,
+ "eval_runtime": 50.0873,
+ "eval_samples_per_second": 48.755,
+ "eval_steps_per_second": 1.537,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.033824123442173004,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 3.884982109069824,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.033084239810705185,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 3.8900320529937744,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.030332544818520546,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.849256753921509,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.03305228054523468,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 3.8799757957458496,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.032977499067783356,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 3.8762192726135254,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.03564388304948807,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 3.935297966003418,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.03678688034415245,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 3.883486270904541,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.033113423734903336,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 3.8867483139038086,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.031361665576696396,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.8535642623901367,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.03554220125079155,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.873800277709961,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.036401309072971344,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 3.8917698860168457,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03934977576136589,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.89443302154541,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.036681804805994034,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 3.909292221069336,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.03501734510064125,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 3.8936758041381836,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.03294810652732849,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.8512420654296875,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.03309205174446106,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 3.8927345275878906,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.0326412096619606,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.8792340755462646,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.031607743352651596,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 3.8864612579345703,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.03232957422733307,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.8902814388275146,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.03284614533185959,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.842142105102539,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.03221464529633522,
+ "learning_rate": 0.0005294454257704,
+ "loss": 3.9002492427825928,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.030522653833031654,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.881631851196289,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.030548343434929848,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.859407424926758,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.032748349010944366,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.8680944442749023,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.03558233380317688,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.88594913482666,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.030905140563845634,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 3.9349465370178223,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.029150554910302162,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.8827242851257324,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.02689620666205883,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.8772687911987305,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.02981090359389782,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.868533134460449,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.025475308299064636,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.8677897453308105,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.02446635067462921,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.849792718887329,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.023087894544005394,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.8590407371520996,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.02266695722937584,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.7961838245391846,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02175428345799446,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 3.907876491546631,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01859164983034134,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.876143455505371,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.017559224739670753,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.8135271072387695,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.018546098843216896,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.8607969284057617,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.01811976172029972,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.8600878715515137,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.01865963451564312,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.8479299545288086,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.020091582089662552,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.871124505996704,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020658887922763824,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.8295836448669434,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.019657963886857033,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.863995313644409,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018192192539572716,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.8592021465301514,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.0193292498588562,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.8566818237304688,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.02180560491979122,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.8607001304626465,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.02228926494717598,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 3.9017081260681152,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.022705577313899994,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.850358009338379,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.024546140804886818,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.8607797622680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.024432606995105743,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.8858346939086914,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.02222537063062191,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.8758046627044678,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.020734228193759918,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.8472397327423096,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021934807300567627,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 3.8870527744293213,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.020544743165373802,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.853306770324707,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.018688462674617767,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.847235679626465,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.01806008815765381,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.8535499572753906,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.017131300643086433,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.8722615242004395,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.01802428811788559,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.8429300785064697,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.021756721660494804,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 3.9034337997436523,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.025179840624332428,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.878871440887451,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024947836995124817,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.865844488143921,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.023002279922366142,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.870363235473633,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.024411316961050034,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.84774112701416,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021956942975521088,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.8242850303649902,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.021718252450227737,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.8599233627319336,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.021627351641654968,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.8093209266662598,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.023275606334209442,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 3.8888278007507324,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.0223365630954504,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.832437038421631,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.02074572630226612,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.837256908416748,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.021750684827566147,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.8527426719665527,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.021407652646303177,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.8540799617767334,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.019747452810406685,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.8388657569885254,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.02117173559963703,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.8526837825775146,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.120031833648682,
+ "eval_runtime": 51.6338,
+ "eval_samples_per_second": 47.295,
+ "eval_steps_per_second": 1.491,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02280588448047638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.7451858520507812,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.02831619791686535,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.7513363361358643,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.033538904041051865,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.7700629234313965,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03756585717201233,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.761597156524658,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.03611095994710922,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.7528419494628906,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.036730196326971054,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.781006336212158,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.03899746015667915,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.7477502822875977,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.034223251044750214,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.7733516693115234,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03035007044672966,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.720062017440796,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03161662444472313,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.803316116333008,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.0347144789993763,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.767930746078491,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.0372144989669323,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.8206543922424316,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.0401662215590477,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.8013486862182617,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.046325262635946274,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.8120102882385254,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.047259002923965454,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.8135437965393066,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.05711013451218605,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.7666027545928955,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.0584513321518898,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.8196911811828613,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.04898185655474663,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.7989916801452637,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.048116326332092285,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.8127505779266357,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.04559788480401039,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.812692642211914,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.0463123619556427,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.8204550743103027,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.047239694744348526,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.8728933334350586,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.04807032272219658,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.848081111907959,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.04575910419225693,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.8245935440063477,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.04763035476207733,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8072943687438965,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.041722819209098816,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.8203349113464355,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.04016328230500221,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.814847946166992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.04132859408855438,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.841416358947754,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.034896306693553925,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.8002638816833496,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.03604845330119133,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.8327198028564453,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.03450542315840721,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.768331527709961,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.027338212355971336,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.8150830268859863,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.028645852580666542,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.8303847312927246,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.022145593538880348,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8006770610809326,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.025019388645887375,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.787055015563965,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.021818388253450394,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.7835514545440674,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.02169446460902691,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.8204636573791504,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.020191732794046402,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.759824275970459,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.02050570212304592,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.7697300910949707,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.01843179017305374,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.812692642211914,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.019319897517561913,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.8030319213867188,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.01919504627585411,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.774406671524048,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.020404895767569542,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.7932841777801514,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.0193608570843935,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.7646965980529785,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.018715064972639084,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.7516822814941406,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017628416419029236,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.8033952713012695,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.017376115545630455,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.8165087699890137,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.017071744427084923,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.7948341369628906,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017066463828086853,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.7924857139587402,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016140775755047798,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.8130056858062744,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.017333902418613434,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.7463724613189697,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016993671655654907,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.7886691093444824,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01662532240152359,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.7797842025756836,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.01572636514902115,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.778435230255127,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.016972852870821953,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.7723400592803955,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.017710141837596893,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.759700298309326,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016686290502548218,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.7514495849609375,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.0173258688300848,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.740518569946289,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01763203740119934,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.801142692565918,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01665954664349556,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.7584409713745117,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.01583053544163704,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.766623020172119,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015792468562722206,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.7674431800842285,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01604226604104042,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.7700769901275635,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016142746433615685,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.74483060836792,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.0163167305290699,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.765819549560547,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.014575137756764889,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.783097267150879,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015309441834688187,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.7523159980773926,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.01599740982055664,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.8240749835968018,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018419766798615456,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.7451095581054688,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018620187416672707,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.786379814147949,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.01710781268775463,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.7701385021209717,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018073519691824913,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.732387065887451,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.0781378746032715,
+ "eval_runtime": 50.4536,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.017640452831983566,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.6576290130615234,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.023312240839004517,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.7060039043426514,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02694530226290226,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.663175582885742,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030193833634257317,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.7183051109313965,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03213605657219887,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.689906120300293,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03267141059041023,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.680861473083496,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.0288003608584404,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.6967086791992188,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.02705150656402111,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.6678528785705566,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027116021141409874,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.617978811264038,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.027996007353067398,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.6817078590393066,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0301407128572464,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.6666712760925293,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.027958862483501434,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.659721851348877,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.027907954528927803,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.6852502822875977,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.0299089252948761,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.6719369888305664,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.028908327221870422,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.683891773223877,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.029201874509453773,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.675286293029785,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.029501909390091896,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.6716361045837402,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02956741861999035,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.682234764099121,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.025880780071020126,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.6862263679504395,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.02546137385070324,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.650463104248047,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02598917856812477,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.650136709213257,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.022322559729218483,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.6673481464385986,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.023159757256507874,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.710693836212158,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.023697644472122192,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.643439769744873,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.024685055017471313,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.685575485229492,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.025533076375722885,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.675459384918213,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.0276089645922184,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.716707706451416,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.029507236555218697,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.721609592437744,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02893853932619095,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.694105625152588,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.0289918165653944,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.6817140579223633,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.02892722561955452,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.7077555656433105,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.025125199928879738,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.7142481803894043,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.024356240406632423,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.7215089797973633,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.024877728894352913,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.7278385162353516,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.021869264543056488,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.7156362533569336,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.023838108405470848,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.628690719604492,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.023647671565413475,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.694578170776367,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.022405611351132393,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.6743035316467285,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.022268209606409073,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.6974878311157227,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.02067786268889904,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.7236175537109375,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.020800262689590454,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.6880383491516113,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.022022923454642296,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.712765693664551,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.019685039296746254,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.7088968753814697,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.018866391852498055,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.6870031356811523,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.017763717100024223,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.681875228881836,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.019132405519485474,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.7096948623657227,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.01773391291499138,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.6663694381713867,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.01929612085223198,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.6979756355285645,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.0170444268733263,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.7490732669830322,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.018732212483882904,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.681135654449463,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.01920437067747116,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.706864833831787,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.017883962020277977,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.7199106216430664,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.019238384440541267,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.690654754638672,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.019548635929822922,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.6466197967529297,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.01838546432554722,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.697503089904785,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.01709168776869774,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.7186479568481445,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.017265647649765015,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.70613956451416,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.017378784716129303,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.7334985733032227,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.01727965846657753,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.668942451477051,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.0159244854003191,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.6963210105895996,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.01714828796684742,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.7310261726379395,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01836692914366722,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.6861279010772705,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.017527267336845398,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.7056221961975098,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018722396343946457,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.7134618759155273,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.01885937713086605,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.6916236877441406,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.018058430403470993,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.711747169494629,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.018370669335126877,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.698024034500122,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019071800634264946,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.7265000343322754,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018927892670035362,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.66849422454834,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.018307602033019066,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.7255442142486572,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018271367996931076,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.6764702796936035,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.02031629905104637,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.701361894607544,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.050851821899414,
+ "eval_runtime": 50.2252,
+ "eval_samples_per_second": 48.621,
+ "eval_steps_per_second": 1.533,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.01971541903913021,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.6065244674682617,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02142862044274807,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.5674822330474854,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.02554505132138729,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.592219114303589,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.027617936953902245,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.610654592514038,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02609461359679699,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.5939903259277344,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.025471528992056847,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.6202611923217773,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.028024762868881226,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.6009678840637207,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.029697636142373085,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.5788283348083496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.03382061794400215,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.5648961067199707,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.0367138497531414,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.606396436691284,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.0382058322429657,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.6204686164855957,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.040079496800899506,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.6093289852142334,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03497437387704849,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.6222686767578125,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.0402582623064518,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.62686824798584,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.04198875278234482,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.6284966468811035,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04436362907290459,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.6311941146850586,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.04290125519037247,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.6524829864501953,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.04684451222419739,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.6487207412719727,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.045145053416490555,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.6380615234375,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03790564090013504,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.657310962677002,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03514683619141579,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.6209239959716797,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03842940181493759,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.6322731971740723,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03971761465072632,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.614091634750366,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.03596782684326172,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.6484456062316895,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.03553831949830055,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.6416659355163574,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.03572481870651245,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.6515002250671387,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.03205475956201553,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.6165788173675537,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.031817298382520676,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.6384246349334717,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.032740723341703415,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.649770736694336,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.029724691063165665,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.6431474685668945,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.030841408297419548,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.6525821685791016,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028103720396757126,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.6465821266174316,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024850577116012573,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.6334805488586426,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.022919366136193275,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.6217727661132812,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.021952666342258453,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.628264904022217,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02252272702753544,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.6385152339935303,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.022376593202352524,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.620072841644287,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.02220543660223484,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.6313552856445312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.020465999841690063,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.6591811180114746,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.02027231827378273,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.6224141120910645,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.018964484333992004,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.657104969024658,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019139496609568596,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.6112844944000244,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.017670460045337677,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.6124114990234375,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.018377700820565224,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.6260032653808594,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018166547641158104,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.623896598815918,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.018160244449973106,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.606146812438965,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.017680339515209198,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.593442916870117,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017043335363268852,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.6078238487243652,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01737075299024582,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.624243974685669,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016876986250281334,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.61860990524292,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.01836318150162697,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.6127238273620605,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.01851593889296055,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.5990424156188965,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01756875216960907,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.6324591636657715,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.018489856272935867,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.6184964179992676,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.020553678274154663,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.6334445476531982,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.019583869725465775,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.659083127975464,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.02075311355292797,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.6290276050567627,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019769102334976196,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.640267848968506,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.018902694806456566,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.6226813793182373,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.018861234188079834,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.6340813636779785,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.017906460911035538,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.611356496810913,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018945172429084778,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.6207547187805176,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.019582243636250496,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.604036808013916,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.016914615407586098,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.6218671798706055,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.01780974119901657,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.633151054382324,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.018503107130527496,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.6394028663635254,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.02004699409008026,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.609795093536377,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.019034143537282944,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.6308255195617676,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017857089638710022,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.6430840492248535,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.016585007309913635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.597780466079712,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.018193719908595085,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.5515317916870117,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.02141304314136505,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.6024272441864014,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.033480644226074,
+ "eval_runtime": 50.5175,
+ "eval_samples_per_second": 48.34,
+ "eval_steps_per_second": 1.524,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.023165006190538406,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.5129153728485107,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.026125362142920494,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.526608467102051,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.025887638330459595,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.488851547241211,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0313182957470417,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.5280168056488037,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033169616013765335,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.5603880882263184,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03307235985994339,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.4956302642822266,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.0329267717897892,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.503871440887451,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.0305545162409544,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.5026607513427734,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.029537072405219078,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.5214929580688477,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.02793995290994644,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.5156445503234863,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.027639688923954964,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.547917127609253,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.02794025093317032,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.5278632640838623,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.027301650494337082,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.5474486351013184,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.02592542953789234,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.4921517372131348,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02838536538183689,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.555340051651001,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.029928214848041534,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.5168163776397705,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.029772095382213593,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.5270557403564453,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.028528360649943352,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.537489414215088,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.030050598084926605,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.532963275909424,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.030958108603954315,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.5400733947753906,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.03134820610284805,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.592667579650879,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.03498055040836334,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.5697312355041504,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.032737333327531815,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.529754161834717,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.02683088555932045,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.572695255279541,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.02918725088238716,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.560469627380371,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.028278546407818794,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.548093795776367,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.027411337941884995,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.5340685844421387,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.028259333223104477,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.5563483238220215,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.026694146916270256,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.525777816772461,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.025365043431520462,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.547852039337158,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.023482169955968857,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.5104994773864746,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.025437092408537865,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.551476001739502,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.023397043347358704,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.5347278118133545,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.02193194255232811,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.5701966285705566,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.021459925919771194,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.5849153995513916,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02059122920036316,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.5554616451263428,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.02144095115363598,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.544715404510498,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.021685315296053886,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.551114797592163,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.021383846178650856,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.5639543533325195,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02348523773252964,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.5521254539489746,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.022676285356283188,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.6011240482330322,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.0211525559425354,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.5258054733276367,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.021688969805836678,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.5350403785705566,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.020611785352230072,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.586333990097046,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02032087743282318,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.526181221008301,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.020003365352749825,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.5612504482269287,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.01991727016866207,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.532149314880371,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.018763169646263123,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.5939321517944336,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.02002701535820961,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.585963249206543,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01876552775502205,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.5227162837982178,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.01947108842432499,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.5755038261413574,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.020767178386449814,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.5338120460510254,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.020294666290283203,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.553088665008545,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018969910219311714,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.5762457847595215,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.019392840564250946,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.57486629486084,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.018130552023649216,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.5580530166625977,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.019428856670856476,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.574798107147217,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01906183548271656,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.591217517852783,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01891898550093174,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.602930784225464,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019084971398115158,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.5409998893737793,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.020645765587687492,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.5514302253723145,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019142668694257736,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.562621593475342,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.018142448738217354,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.5177042484283447,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.0196819007396698,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.565025806427002,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.02185390330851078,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.612342357635498,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.0210928525775671,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.5256052017211914,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.022541677579283714,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.5660228729248047,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.021657954901456833,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.573640823364258,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.022344226017594337,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.567976474761963,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.022284816950559616,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.5684895515441895,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.022484345361590385,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.540445566177368,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.023387541994452477,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.615169048309326,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.022063255310059,
+ "eval_runtime": 50.0504,
+ "eval_samples_per_second": 48.791,
+ "eval_steps_per_second": 1.538,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.025416195392608643,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.472053289413452,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03274574130773544,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.4454469680786133,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.038753680884838104,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.473802089691162,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.040995027869939804,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.4465627670288086,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.04495278745889664,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.4596662521362305,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.04058493301272392,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.497076988220215,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03622855991125107,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.437213897705078,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03973937779664993,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.439497709274292,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03509172052145004,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.446589469909668,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03389352932572365,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.4248695373535156,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.03341592103242874,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.4621963500976562,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.03630055487155914,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.460796356201172,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.03910025209188461,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.487412929534912,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.038775887340307236,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.4755406379699707,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.03476632013916969,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.4476795196533203,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.0304395891726017,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.4635419845581055,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.032385434955358505,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.480074405670166,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.033058539032936096,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.501023769378662,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.02968708612024784,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.4640369415283203,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.027635134756565094,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.4773190021514893,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.02599899284541607,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.5029773712158203,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.026165345683693886,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.478841781616211,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.025090457871556282,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.4735350608825684,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.02470545284450054,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.467313766479492,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.025782780721783638,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.5290021896362305,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.0232260599732399,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.482112407684326,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.022679394111037254,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.4941048622131348,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.021907858550548553,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.4868979454040527,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.02131517603993416,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.473801851272583,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.02139938995242119,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.467991828918457,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.022905876860022545,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.449955940246582,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.022308409214019775,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.4994256496429443,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.021778665482997894,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.458263397216797,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021301144734025,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.491316795349121,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.022083446383476257,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.501215934753418,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.02380307950079441,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.4921107292175293,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.023428255692124367,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.4674673080444336,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.02352738566696644,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.5251779556274414,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.023777296766638756,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.4780795574188232,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.02300087921321392,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.506828546524048,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02298249676823616,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.4867682456970215,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.02369522489607334,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.4788174629211426,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.023377958685159683,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.5151877403259277,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.022679107263684273,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.5543360710144043,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.023065030574798584,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.498810052871704,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.023909080773591995,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.49857234954834,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.027034441009163857,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.4986824989318848,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.027564242482185364,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.4919533729553223,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.025706447660923004,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.4899487495422363,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.023768315091729164,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.519620895385742,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.02414199709892273,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.4896535873413086,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.023554673418402672,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.515610456466675,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.021267585456371307,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.519036054611206,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.020828545093536377,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.5052881240844727,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.02102861925959587,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.5055997371673584,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.021395571529865265,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.497868537902832,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.020460359752178192,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.5136091709136963,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.021823614835739136,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.475006341934204,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.018910769373178482,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.5195236206054688,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.021751578897237778,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.5240139961242676,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.022107195109128952,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.519967555999756,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.020157957449555397,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.4966866970062256,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.020531099289655685,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.4797451496124268,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.022000400349497795,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.5123419761657715,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.020057380199432373,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.48568058013916,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.020711632445454597,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.5155107975006104,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.019807564094662666,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.489352226257324,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.0201423242688179,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.516447067260742,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.020218560472130775,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.490121841430664,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.01995459385216236,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.5198464393615723,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.0205950066447258,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.508241653442383,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.023501282557845116,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.4799306392669678,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.019868850708008,
+ "eval_runtime": 50.1852,
+ "eval_samples_per_second": 48.66,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.023446375504136086,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.3734636306762695,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.03185269609093666,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.40609073638916,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.036099907010793686,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.412529945373535,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.03320091590285301,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.379739284515381,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.03492269665002823,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.363452434539795,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.036131877452135086,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.4265947341918945,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03501306474208832,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.4277467727661133,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.03509834036231041,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.4126200675964355,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.035959046334028244,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.4025073051452637,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.03568081557750702,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.360198497772217,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.033409640192985535,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.4326112270355225,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.035072147846221924,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.3943448066711426,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.0390336699783802,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.3908376693725586,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.04074811935424805,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.4131217002868652,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.04223793372511864,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.4361846446990967,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.04148327559232712,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.385590076446533,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.03780654817819595,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.39103102684021,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.03599593788385391,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.3816580772399902,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.0323498509824276,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.4144363403320312,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.028411103412508965,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.3942153453826904,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.0291626937687397,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.4205002784729004,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.031179601326584816,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.4216976165771484,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.030198296532034874,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.446481704711914,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.028853006660938263,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.387111186981201,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.02881418541073799,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.4209513664245605,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.02844458818435669,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.4242939949035645,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.02708088979125023,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.421633720397949,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.026174271479249,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.4422969818115234,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.026610825210809708,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.389453887939453,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.024120310321450233,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.409308433532715,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02540917508304119,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.455038547515869,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02592257224023342,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.438356399536133,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02622988633811474,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.4102461338043213,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02742183394730091,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.4298853874206543,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.027597986161708832,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.4676694869995117,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.027417505159974098,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.448775053024292,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.027641447260975838,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.412059783935547,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02430785819888115,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.4210901260375977,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.0228742565959692,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.448287010192871,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.02555767260491848,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.437659740447998,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.026144735515117645,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.4108011722564697,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.023222025483846664,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.425842761993408,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.023229042068123817,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.4553847312927246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.02357715740799904,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.432569742202759,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02379770763218403,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.4561729431152344,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.02288263663649559,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.4615232944488525,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.023124687373638153,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.426274061203003,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.02159219980239868,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.4188714027404785,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.021851079538464546,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.4414737224578857,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.02122790552675724,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.4233686923980713,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.021486908197402954,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.4628071784973145,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.021462302654981613,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.4598121643066406,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.02211778238415718,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.4480717182159424,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.02264760062098503,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.432713270187378,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.023326270282268524,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.4199466705322266,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.021042456850409508,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.46014404296875,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.02085738815367222,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.424361228942871,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.02238156646490097,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.431087017059326,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.020888421684503555,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.444561719894409,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.019462158903479576,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.4359817504882812,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01935168355703354,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.4798216819763184,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.019016599282622337,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.466953754425049,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.019315198063850403,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.4543745517730713,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.020091861486434937,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.4549827575683594,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.019463684409856796,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.459575653076172,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019672341644763947,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.42952299118042,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.021819431334733963,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.4079549312591553,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02263827994465828,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.438084125518799,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02237289398908615,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.4674148559570312,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.021200798451900482,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.443467378616333,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.019791321828961372,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.473050832748413,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021999863907694817,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.4677224159240723,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.023767471313477,
+ "eval_runtime": 50.5564,
+ "eval_samples_per_second": 48.302,
+ "eval_steps_per_second": 1.523,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.026637326925992966,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.319368362426758,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03474085032939911,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.3167331218719482,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03897247463464737,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.3552942276000977,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.04073502868413925,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.313297748565674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.042310018092393875,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.3160247802734375,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042081061750650406,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.3275983333587646,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.044193465262651443,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.340792655944824,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.050495389848947525,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.343179225921631,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.047840770334005356,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.34719181060791,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04562614485621452,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.3564634323120117,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04527168720960617,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.3222596645355225,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.046066973358392715,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.3199524879455566,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.04370526969432831,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.331850051879883,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.044179484248161316,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.3383166790008545,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04629389941692352,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.371685028076172,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04530962556600571,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.375154495239258,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.0423232801258564,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.350335121154785,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.03975028172135353,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.361813545227051,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.038614872843027115,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.365497350692749,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.037885427474975586,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.3752002716064453,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03843831270933151,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.3883700370788574,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.03634784743189812,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.3803834915161133,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.034619782119989395,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.3654308319091797,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.0361088290810585,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.367361545562744,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.03530782461166382,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.365108013153076,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.0347982794046402,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.3979225158691406,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.033351022750139236,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.333707332611084,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.02785501629114151,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.295682907104492,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.026446426287293434,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.36256742477417,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.02816934324800968,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.358276844024658,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.02480328269302845,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.379204273223877,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.024093996733427048,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.36539363861084,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.0264551043510437,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.402921676635742,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02366989478468895,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.3885700702667236,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.024046216160058975,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.3652424812316895,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.02316274680197239,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.394704818725586,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.02146068587899208,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.389838218688965,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02160841040313244,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.4168217182159424,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.021650629118084908,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.394850730895996,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.02138490229845047,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.3661723136901855,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.019733132794499397,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.385133981704712,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021143751218914986,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.374056339263916,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020154615864157677,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.39813232421875,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.01982586830854416,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.406252861022949,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02046031877398491,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.4088611602783203,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019895881414413452,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.3829822540283203,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.019736820831894875,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.417444944381714,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02089456096291542,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.395745277404785,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.02123715542256832,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.373142957687378,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.021413927897810936,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.3900771141052246,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020519515499472618,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.4033381938934326,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.020137203857302666,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.352303981781006,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.020653391256928444,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.4036922454833984,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.021110378205776215,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.3789796829223633,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.021329611539840698,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.3665337562561035,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.022912487387657166,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.392066478729248,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.020392298698425293,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.4211678504943848,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.02068619430065155,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.389343023300171,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019735239446163177,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.382718563079834,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.020344868302345276,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.401395320892334,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.020436756312847137,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.396784782409668,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.02073356881737709,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.3773293495178223,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.02016192115843296,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.391589403152466,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.020928259938955307,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.365784168243408,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.02223994769155979,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.4207940101623535,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.020496901124715805,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.4091148376464844,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.019967881962656975,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.4054627418518066,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.020122095942497253,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.4070253372192383,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.02047453634440899,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.3851990699768066,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.021683376282453537,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.401524543762207,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.02171335183084011,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.39005970954895,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.023203130811452866,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.4109549522399902,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.032227516174316,
+ "eval_runtime": 50.1955,
+ "eval_samples_per_second": 48.65,
+ "eval_steps_per_second": 1.534,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.02497863955795765,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.266839027404785,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.034168679267168045,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.2364840507507324,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03966263309121132,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.288017511367798,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03949958458542824,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.2991700172424316,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.04030309244990349,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.2740938663482666,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03934435918927193,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.2809269428253174,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03872886300086975,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.2705867290496826,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03904386982321739,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.2797274589538574,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.04039677977561951,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.2552247047424316,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.04079652950167656,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.289372205734253,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.037776779383420944,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.2954790592193604,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.03510212525725365,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.289374589920044,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03430889919400215,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.263247013092041,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03241586685180664,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.2899670600891113,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03343159705400467,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.3153417110443115,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03850197046995163,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.2956490516662598,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.04002959653735161,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.287416934967041,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03562949597835541,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.320789337158203,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.03265301138162613,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.313688278198242,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029904579743742943,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.2593154907226562,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.03176895156502724,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.2923073768615723,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.02780492976307869,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.2947356700897217,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.026784095913171768,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.2962570190429688,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.027659203857183456,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.2890079021453857,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.027398183941841125,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.3039205074310303,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.025568485260009766,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.3422186374664307,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026164211332798004,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.306922435760498,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.02820078283548355,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.297351837158203,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02962460182607174,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.326993942260742,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.029553448781371117,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.3179855346679688,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02739441581070423,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.305403232574463,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.025046570226550102,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.3129758834838867,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.025572139769792557,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.3096649646759033,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.025110308080911636,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.2942404747009277,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.023466356098651886,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.346740484237671,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.02520659938454628,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.3193960189819336,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.026142649352550507,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.3432259559631348,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02620663307607174,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.287956476211548,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.025314435362815857,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.2975616455078125,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.025970375165343285,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.347085952758789,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.025988303124904633,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.3301897048950195,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.026762330904603004,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.3325912952423096,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.022734295576810837,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.3244683742523193,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.022910384461283684,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.290581226348877,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.022974137216806412,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.347658157348633,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.023319514468312263,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.326606512069702,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.022402094677090645,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.3438923358917236,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.022163154557347298,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.33457612991333,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.02134246937930584,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.2961244583129883,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.022407224401831627,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.3351855278015137,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.022092394530773163,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.3513593673706055,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.023358574137091637,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.3202993869781494,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.023777855560183525,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.355639696121216,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.023228175938129425,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.2900054454803467,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.023693872615695,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.3433480262756348,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.024554478004574776,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.355274200439453,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.023264890536665916,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.3353047370910645,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.021816831082105637,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.335925817489624,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.02405369095504284,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.337028980255127,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.023492708802223206,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.3533782958984375,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02323417365550995,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.4088399410247803,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.022443862631917,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.3338823318481445,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.021382218226790428,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.349273681640625,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.022975143045186996,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.3615660667419434,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.02252914384007454,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.368344306945801,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.023162800818681717,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.307274341583252,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.021903425455093384,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.3219385147094727,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.022324811667203903,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.358537197113037,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.02382393181324005,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.400815963745117,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.023555558174848557,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.3353281021118164,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.02237626165151596,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.3350510597229004,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.024963514879345894,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.3497653007507324,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.0441718101501465,
+ "eval_runtime": 50.454,
+ "eval_samples_per_second": 48.401,
+ "eval_steps_per_second": 1.526,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.02838011272251606,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.200857400894165,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.039218541234731674,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.216035842895508,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.04519211873412132,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.2565317153930664,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.045971740037202835,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.193302631378174,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04466128721833229,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.211941719055176,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03824452683329582,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.1935150623321533,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.038341306149959564,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.2471399307250977,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.042251259088516235,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.2407326698303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.041062962263822556,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.218140125274658,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.039125971496105194,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.236576557159424,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.03779982775449753,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.2516260147094727,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.04032895714044571,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.256319999694824,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.04632185399532318,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.2610297203063965,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.047891344875097275,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.245124340057373,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.04665791243314743,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.2170794010162354,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.042456191033124924,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.2394773960113525,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.041039273142814636,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.2073540687561035,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.04139619320631027,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.2208385467529297,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.040903497487306595,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.2657084465026855,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.039104022085666656,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.220423698425293,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.038409024477005005,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.2392640113830566,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.03928929567337036,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.2551658153533936,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.03595723956823349,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.246877431869507,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.03286638855934143,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.249814987182617,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.03194553405046463,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.2831225395202637,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.03148822858929634,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.2529191970825195,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.028215764090418816,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.239771842956543,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.029640203341841698,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.2605326175689697,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.031893499195575714,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.278299331665039,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.027682997286319733,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.2662453651428223,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.02682127058506012,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.2539844512939453,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.027005808427929878,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.2677154541015625,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.028649277985095978,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.273314952850342,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02717677317559719,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.295776605606079,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.027117731049656868,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.3063015937805176,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.02528969943523407,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.260274887084961,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02476714551448822,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.269145965576172,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.023916812613606453,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.2718214988708496,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.024106808006763458,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.2749056816101074,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.025227895006537437,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.2856812477111816,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.024939779192209244,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.286252975463867,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.02310256101191044,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.294565200805664,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.023347819223999977,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.2724690437316895,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.025544267147779465,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.285187244415283,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.024714339524507523,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.2818691730499268,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.024078287184238434,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.268057346343994,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.02277112565934658,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.3010287284851074,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022507650777697563,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.2278428077697754,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02236209623515606,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.247732162475586,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.022182796150445938,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.280855178833008,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.021957427263259888,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.276561737060547,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.02216874435544014,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.295581340789795,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.02197474241256714,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.2953271865844727,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.023017140105366707,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.2778265476226807,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.02271858975291252,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.272772789001465,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.02145172655582428,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.2671878337860107,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.023355843499302864,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.270608901977539,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.024302681908011436,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.304785966873169,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.022532524541020393,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.293569564819336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02302512526512146,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.290585517883301,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.022924263030290604,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.334559917449951,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.022930070757865906,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.324747085571289,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02236410789191723,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.2554585933685303,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021813398227095604,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.2961459159851074,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.023822152987122536,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.3330016136169434,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.024791093543171883,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.3361692428588867,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.023120207712054253,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.3111090660095215,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.022923914715647697,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.309880256652832,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.023387115448713303,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.27738881111145,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.022936301305890083,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.278303861618042,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.022875789552927017,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.294363498687744,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.026425499469041824,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.309865951538086,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.063027858734131,
+ "eval_runtime": 50.4283,
+ "eval_samples_per_second": 48.425,
+ "eval_steps_per_second": 1.527,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.029716063290834427,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.155860662460327,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.04129140079021454,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.173372745513916,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.043971411883831024,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.156592845916748,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.045781444758176804,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.1795907020568848,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.05106214061379433,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.1664843559265137,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.05151188746094704,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.132347822189331,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.04985634610056877,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.1797890663146973,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.04641514644026756,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.18941593170166,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.047104135155677795,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.1986212730407715,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.04771691560745239,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.17199969291687,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.04283500835299492,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.19889497756958,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.045737508684396744,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.1735448837280273,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.04194347932934761,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.1680378913879395,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.03978888317942619,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.189157485961914,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.038372501730918884,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.173153877258301,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.03770112991333008,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.1855549812316895,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.039221152663230896,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.163548231124878,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.038172390311956406,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.2130184173583984,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.036092035472393036,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.1872410774230957,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.03796549513936043,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.1906235218048096,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.03652634471654892,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.1930294036865234,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.03357614949345589,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.2220592498779297,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.031064189970493317,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.165567398071289,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.03047519363462925,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.2221152782440186,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.03237055242061615,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.19350528717041,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.031887367367744446,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.198000431060791,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.030003825202584267,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.216844081878662,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.029671285301446915,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.188290596008301,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.028210045769810677,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.2034521102905273,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.027714522555470467,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.1896862983703613,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.027544016018509865,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.201566696166992,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02687615342438221,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.212627410888672,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.027576791122555733,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.2212977409362793,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.026638662442564964,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.212942600250244,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.025683816522359848,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.223860263824463,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.024247555062174797,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.1864142417907715,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.0241243876516819,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.2133448123931885,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.02552613988518715,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.2067413330078125,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.026517802849411964,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.2368083000183105,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.026641326025128365,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.2352023124694824,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02410091646015644,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.203031063079834,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.024564417079091072,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.2257838249206543,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.027079034596681595,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.231666088104248,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.028487561270594597,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.2059030532836914,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.027325820177793503,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.266763687133789,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.026968935504555702,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.215022325515747,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.026609014719724655,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.2462165355682373,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.025502527132630348,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.2074406147003174,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.025113532319664955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.2601394653320312,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.025958944112062454,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.2916884422302246,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.027360450476408005,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.2618210315704346,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.024357682093977928,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.2179150581359863,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.023221900686621666,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.217968702316284,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.024587785825133324,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.2512311935424805,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.023439234122633934,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.237109899520874,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02304251492023468,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.2800498008728027,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.024918463081121445,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.2398629188537598,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.024144692346453667,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.2291040420532227,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02352958731353283,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.2083582878112793,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.025444941595196724,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.2672922611236572,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.02433425933122635,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.26462984085083,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02505205012857914,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.2579774856567383,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.025443485006690025,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.2764360904693604,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.024669712409377098,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.2847039699554443,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02444596029818058,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.2341907024383545,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.022882161661982536,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.2461047172546387,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.022844094783067703,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.2301855087280273,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.02349710650742054,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.2797040939331055,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.023101530969142914,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.2591116428375244,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.023587072268128395,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.2426750659942627,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.022919058799743652,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.2663965225219727,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.025876231491565704,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.218973159790039,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.083016395568848,
+ "eval_runtime": 50.4655,
+ "eval_samples_per_second": 48.39,
+ "eval_steps_per_second": 1.526,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.02795129455626011,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.111154079437256,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.038764070719480515,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.121746301651001,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.04482290521264076,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.0777668952941895,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05265074595808983,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.1141412258148193,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.054656799882650375,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.163942813873291,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.0536152608692646,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.1095588207244873,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05117349326610565,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.130068302154541,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.04928487166762352,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.1095733642578125,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04497082158923149,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.0700597763061523,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04149822145700455,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.1213884353637695,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.0367375873029232,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.0872397422790527,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.03654325008392334,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.118203639984131,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.03604629263281822,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.1392035484313965,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.03527577966451645,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.0786261558532715,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.035132844001054764,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.1538643836975098,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.038787487894296646,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.1169254779815674,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.042085472494363785,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.181628704071045,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.047577936202287674,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.1096248626708984,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.049678653478622437,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.119234085083008,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.045943330973386765,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.1380743980407715,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.03879093378782272,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.1385443210601807,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.03623232990503311,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.137730598449707,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.036925360560417175,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.1649460792541504,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.036360204219818115,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.141594409942627,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.033974066376686096,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.1609244346618652,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.03410126268863678,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.1503610610961914,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.036671023815870285,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.1328444480895996,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03279515355825424,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.1580991744995117,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030375421047210693,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.1468329429626465,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.029596425592899323,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.185633420944214,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.028221232816576958,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.1535420417785645,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.027473991736769676,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.1620326042175293,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.028315890580415726,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.166584014892578,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.028596512973308563,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.1848390102386475,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02666497975587845,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.189256191253662,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.025721587240695953,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.1536002159118652,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.026590559631586075,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.185093402862549,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.026046885177493095,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.157660961151123,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.025429774075746536,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.2122983932495117,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.024741949513554573,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.199303150177002,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02654789388179779,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.19598388671875,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02522037737071514,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.144286870956421,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.024641146883368492,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.1602842807769775,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.024546930566430092,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.2033753395080566,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.024457363411784172,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.150444269180298,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.025484295561909676,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.211226463317871,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02559254691004753,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.1710243225097656,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.025824666023254395,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.193039894104004,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02629282884299755,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.1980626583099365,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.02783985249698162,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.201272964477539,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.02783452905714512,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.1902976036071777,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.027054136618971825,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.1756033897399902,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.025598807260394096,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.1835007667541504,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.025801416486501694,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.1502771377563477,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.025161903351545334,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.204230546951294,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.024476485326886177,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.2056431770324707,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.027181360870599747,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.192403793334961,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.027966642752289772,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.226717710494995,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.02702396549284458,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.2358174324035645,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.026214588433504105,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.188809871673584,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.025607792660593987,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.225285530090332,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.025736015290021896,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.2165112495422363,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02606584131717682,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.1724109649658203,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.027704279869794846,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.226144790649414,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02665286883711815,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.2116212844848633,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.024916836991906166,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.1855709552764893,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.02602052502334118,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.209099292755127,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.027774035930633545,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.257012367248535,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.025271818041801453,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.2195634841918945,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.025466609746217728,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.2127246856689453,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.02570398896932602,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.1998469829559326,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.029942989349365234,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.1919665336608887,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.111581802368164,
+ "eval_runtime": 50.4396,
+ "eval_samples_per_second": 48.414,
+ "eval_steps_per_second": 1.527,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.030210141092538834,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.053656578063965,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03911827132105827,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.074835777282715,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.04522496461868286,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.0801167488098145,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.04968760907649994,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.036942958831787,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.0491953119635582,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.0908758640289307,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04443388804793358,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.0831925868988037,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04193627089262009,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.112642526626587,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.04206576570868492,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.063856601715088,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.04307034611701965,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.0770206451416016,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.04504140466451645,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.043256998062134,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.04183361679315567,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.071904420852661,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.04096474125981331,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.0957818031311035,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.0396687313914299,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.068578004837036,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.039420392364263535,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.1138620376586914,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.04043440520763397,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.1159443855285645,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04089980944991112,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.080156087875366,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.03673114627599716,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.075413942337036,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.03617323562502861,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.098205804824829,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.04049111530184746,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.0892162322998047,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.040630042552948,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.072084426879883,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.03836176171898842,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.0592832565307617,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.03725204989314079,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.1090190410614014,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.03406655043363571,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.0990219116210938,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.036132458597421646,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.10788631439209,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.036138489842414856,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.074190139770508,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.03273249790072441,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.089951515197754,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.032528240233659744,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.12996244430542,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.03284797817468643,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.096247673034668,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.033816490322351456,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.072625160217285,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.028744373470544815,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.0795254707336426,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.029273413121700287,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.1375021934509277,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.03301607817411423,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.0845353603363037,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.03274596109986305,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.0954806804656982,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.030900463461875916,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.114865303039551,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.03086976893246174,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.145756483078003,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.030664879828691483,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.158163547515869,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.02958623692393303,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.128352165222168,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.030251285061240196,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.1241607666015625,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.031827107071876526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.1360931396484375,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03066275827586651,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.1406500339508057,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.028524786233901978,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.1193015575408936,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.030353950336575508,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.142348289489746,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02794797718524933,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.1307966709136963,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.028111977502703667,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.1213247776031494,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.027980122715234756,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.138467311859131,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.028323853388428688,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.147895336151123,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.027988901361823082,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.14900803565979,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.028479712083935738,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.1247828006744385,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.02820756658911705,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.1670751571655273,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.028373045846819878,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.1428818702697754,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.027303598821163177,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.108497381210327,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.027105970308184624,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.1126301288604736,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02830038033425808,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.176370143890381,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02823113091289997,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.151198387145996,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.02620161511003971,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.1473894119262695,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.02454233728349209,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.125128746032715,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.026880672201514244,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.151278495788574,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.028482185676693916,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.1477842330932617,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.026428835466504097,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.1347134113311768,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.026200884953141212,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.154703140258789,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.026517309248447418,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.165668487548828,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.025290334597229958,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.1809563636779785,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.025777358561754227,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.148552894592285,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.025478927418589592,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.1592931747436523,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.025618698447942734,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.166227340698242,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02561291493475437,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.116224765777588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.024076899513602257,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.1432337760925293,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.024160441011190414,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.1792941093444824,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024426886811852455,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.1715402603149414,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.024623816832900047,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.1719119548797607,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.02574409544467926,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.1931748390197754,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.029607143253087997,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.1973509788513184,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.136509418487549,
+ "eval_runtime": 49.9105,
+ "eval_samples_per_second": 48.928,
+ "eval_steps_per_second": 1.543,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.03253521770238876,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 2.996598243713379,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04506896063685417,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 2.9996728897094727,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.048917125910520554,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.01076602935791,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.04610349237918854,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 2.995270252227783,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.045683592557907104,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.03594970703125,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.05354170873761177,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.0199317932128906,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.06507625430822372,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.0495800971984863,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.07209842652082443,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.0578527450561523,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.07035882771015167,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.0229921340942383,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.05863689258694649,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.030324935913086,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.04508105292916298,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.0372116565704346,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04252060130238533,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.0351850986480713,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.044466983526945114,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.04567289352417,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.04447634890675545,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.0374679565429688,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.04119309037923813,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.0243847370147705,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03847199305891991,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.001368522644043,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03716685250401497,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.0389842987060547,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.03758823871612549,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.0392327308654785,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.039980918169021606,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.048888683319092,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.038987886160612106,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.048262119293213,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03671572729945183,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.0321078300476074,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.03564755246043205,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.005302906036377,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.033568378537893295,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.031449556350708,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03358025476336479,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.0719268321990967,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.033897947520017624,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.0156619548797607,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.030079921707510948,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.037581205368042,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02967393398284912,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.0666556358337402,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.031029149889945984,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.095435619354248,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.03093329258263111,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.062168598175049,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.030287278816103935,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.037875175476074,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.030194830149412155,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.072413921356201,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.029436185956001282,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.0657665729522705,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.028946757316589355,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.069164276123047,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.028802946209907532,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.0415639877319336,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02906205505132675,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.104550361633301,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.029995542019605637,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.068049430847168,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03007844276726246,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.0652952194213867,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02816668152809143,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.1197381019592285,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.02691139280796051,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.0562210083007812,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.02815496176481247,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.1038076877593994,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.028936119750142097,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.0725107192993164,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.03108699806034565,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.0953660011291504,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.030596446245908737,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.107701301574707,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026907946914434433,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.0547142028808594,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.02814572863280773,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.1026806831359863,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.0319778174161911,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.111511707305908,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.0307171531021595,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.080237865447998,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.028055021539330482,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.0788159370422363,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.028181064873933792,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.1019601821899414,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02825072593986988,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.1220169067382812,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.027759063988924026,
+ "learning_rate": 0.000303,
+ "loss": 3.120443344116211,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.028384150937199593,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.1227922439575195,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02828066237270832,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.090130090713501,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.027049461379647255,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.1284799575805664,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.027248091995716095,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.1222071647644043,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02682642824947834,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.0584917068481445,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.028671007603406906,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.1056923866271973,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.029719552025198936,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.1232962608337402,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02930845133960247,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.1489388942718506,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.027267523109912872,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.1068339347839355,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.027122870087623596,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.091658115386963,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02892552688717842,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.119953155517578,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.026107516139745712,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.1324267387390137,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.02834368869662285,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.1135330200195312,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.0268089696764946,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.1197123527526855,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.026696885004639626,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.132866859436035,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.026226269081234932,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.123291492462158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.025809111073613167,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.1176891326904297,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.026975948363542557,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.1067097187042236,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.025468360632658005,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.083657741546631,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.027642717584967613,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.1571693420410156,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.030620668083429337,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.073249340057373,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.1638689041137695,
+ "eval_runtime": 50.1889,
+ "eval_samples_per_second": 48.656,
+ "eval_steps_per_second": 1.534,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.03377586975693703,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 2.993783950805664,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.044740110635757446,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 2.95580792427063,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.05047239363193512,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 2.984628200531006,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.05149499326944351,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 2.955806016921997,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.05277741700410843,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 2.9356045722961426,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.060614872723817825,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 2.9882826805114746,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.06538370996713638,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.006455898284912,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.06005706638097763,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.0134925842285156,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.05942390486598015,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 2.9740724563598633,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06382409483194351,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.0069828033447266,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.06441724300384521,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 2.984314441680908,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.06459930539131165,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 2.9846179485321045,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05755109339952469,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 2.9764816761016846,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.046704988926649094,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 2.974026679992676,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0429978221654892,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 2.9861302375793457,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.04319468140602112,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 2.9621310234069824,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.038795970380306244,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.0014288425445557,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.03589440509676933,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 2.9826390743255615,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.03705231845378876,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 2.9580907821655273,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.03636796772480011,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.0007996559143066,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.03867757320404053,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 2.997044563293457,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.035327792167663574,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 2.996936798095703,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.032282304018735886,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.004767417907715,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.03375651687383652,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 2.9920854568481445,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.03619010001420975,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.0199923515319824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03363100066781044,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.034114122390747,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03060806356370449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 2.975198984146118,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.032294221222400665,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.015141010284424,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.034491732716560364,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 2.9978959560394287,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.03376961871981621,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.036426067352295,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.031041108071804047,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 2.998319625854492,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.031940486282110214,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.0469486713409424,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.031123239547014236,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.0072379112243652,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.030734606087207794,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.036997079849243,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.031764306128025055,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.0447278022766113,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.02990185283124447,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.034921646118164,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.030433475971221924,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.0206940174102783,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.030094126239418983,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.0418972969055176,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028662586584687233,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.0309152603149414,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.028792817145586014,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.036865234375,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.02997520938515663,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.067462205886841,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.029610155150294304,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.0205025672912598,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.028371484950184822,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.030869960784912,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.028344448655843735,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.0825698375701904,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.029161743819713593,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.0391931533813477,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.030113916844129562,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.042543411254883,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.03028416447341442,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.0566306114196777,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02867533080279827,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.0492074489593506,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.027289753779768944,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.0639188289642334,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02910415083169937,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.05964732170105,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02688678912818432,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.043264865875244,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02871597558259964,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.0865440368652344,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.02735147811472416,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.0280027389526367,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.027558112516999245,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.073667049407959,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.028590068221092224,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.0775787830352783,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.027421196922659874,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.048530101776123,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.02900906838476658,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.0512452125549316,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.028081346303224564,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.0729379653930664,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.02822948433458805,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.020914077758789,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.0274699404835701,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.038802146911621,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.029244130477309227,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.058251142501831,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.02987384982407093,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.1160788536071777,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.029393648728728294,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.0817503929138184,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.026882443577051163,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.07822322845459,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.02949383296072483,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.108980178833008,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.028918517753481865,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.064551830291748,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.027755869552493095,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.06553316116333,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.02706395648419857,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.068215847015381,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.02960599586367607,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.103351354598999,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.027660982683300972,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.0554938316345215,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02664663828909397,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.0832924842834473,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.032493703067302704,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.1057381629943848,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.198692321777344,
+ "eval_runtime": 50.5728,
+ "eval_samples_per_second": 48.287,
+ "eval_steps_per_second": 1.523,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.03448135778307915,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 2.902876615524292,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04302665591239929,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 2.9181900024414062,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.039954621344804764,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 2.917631149291992,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.03846871852874756,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 2.8900160789489746,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.0419776476919651,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 2.9141645431518555,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.044107574969530106,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 2.927809238433838,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.045430976897478104,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 2.8964736461639404,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.04940217733383179,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 2.9224932193756104,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.04955849424004555,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 2.9199090003967285,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.04267909377813339,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 2.9093246459960938,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.040362149477005005,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 2.9300074577331543,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.0392213836312294,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 2.887371063232422,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.03784675523638725,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 2.9503865242004395,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.03810061886906624,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 2.958479166030884,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.037828173488378525,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 2.9732666015625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.03713241219520569,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 2.9283528327941895,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.034065280109643936,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 2.9621665477752686,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.034690748900175095,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 2.9354934692382812,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.03508505970239639,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 2.943425178527832,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03737015649676323,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 2.9421677589416504,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036430537700653076,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 2.9525837898254395,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03370670601725578,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 2.9548637866973877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.03323587030172348,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 2.9914984703063965,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.035796184092760086,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 2.9237194061279297,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03700924664735794,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 2.948540449142456,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03579916059970856,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 2.9956037998199463,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.03507564589381218,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 2.9762418270111084,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.03425542265176773,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 2.9770028591156006,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03175437077879906,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 2.9596753120422363,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.03424549847841263,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.0127992630004883,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03541243076324463,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.0040507316589355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03360338136553764,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 2.9928014278411865,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03273842856287956,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.000690460205078,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.032325662672519684,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.0052268505096436,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.029814070090651512,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 2.978851795196533,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.03210059925913811,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.0176095962524414,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.03372536972165108,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 2.993715286254883,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.03361409902572632,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 2.9708826541900635,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.03308112174272537,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.018354892730713,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.03435883671045303,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 2.959341526031494,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.03298819810152054,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.002148151397705,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.0329960361123085,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 2.9962527751922607,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.032080624252557755,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.008674144744873,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.030718278139829636,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 2.9645867347717285,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.03157243877649307,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.0405192375183105,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.03140097111463547,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.0006134510040283,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02908974327147007,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.013761043548584,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.02906658500432968,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.0001585483551025,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.030192526057362556,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 2.9960665702819824,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.030781449750065804,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 2.9812984466552734,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02945280261337757,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.0034046173095703,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.0288874302059412,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 2.9988417625427246,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.029345402494072914,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.0185203552246094,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.030031058937311172,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 2.99812388420105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.03058621473610401,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.010664463043213,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.028900042176246643,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.0187997817993164,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.030530644580721855,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.0028939247131348,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.029458772391080856,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.0392160415649414,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02845492772758007,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.044290542602539,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.03136971592903137,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.0263891220092773,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.029435086995363235,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 2.985365152359009,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02924281544983387,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.0277979373931885,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.03096146509051323,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.057739734649658,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.030985411256551743,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.010835647583008,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.028439484536647797,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.0429558753967285,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.028826508671045303,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.042165994644165,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.030978480353951454,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.030463218688965,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.03113269992172718,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.0347206592559814,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.029333986341953278,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.0340566635131836,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.028592009097337723,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.0445430278778076,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.029219510033726692,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.0399398803710938,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03413752093911171,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.0056731700897217,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.237446308135986,
+ "eval_runtime": 59.9078,
+ "eval_samples_per_second": 40.763,
+ "eval_steps_per_second": 1.285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.034361813217401505,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 2.8506712913513184,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.04355017840862274,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 2.875974655151367,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.04627153277397156,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 2.8806381225585938,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.046760041266679764,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 2.885575294494629,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.047849562019109726,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 2.8877172470092773,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.05132419615983963,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 2.8731319904327393,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.055483944714069366,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 2.895557403564453,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.05445433780550957,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 2.8901214599609375,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05026889964938164,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 2.8833224773406982,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.04411771148443222,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 2.9307775497436523,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.04263966530561447,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 2.879582166671753,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.043958500027656555,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 2.939608573913574,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04170852527022362,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 2.8954102993011475,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.04250946268439293,
+ "learning_rate": 0.000255486047794226,
+ "loss": 2.905449867248535,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.03957650065422058,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 2.902536392211914,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.04019796848297119,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 2.9027833938598633,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.04101439192891121,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 2.9148616790771484,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.039887234568595886,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 2.9088759422302246,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.03551582247018814,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 2.9005210399627686,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.03631351888179779,
+ "learning_rate": 0.000253907826333243,
+ "loss": 2.898406982421875,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.037652842700481415,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 2.918330192565918,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.036207735538482666,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 2.901122570037842,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.03508591651916504,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 2.9172091484069824,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.03406108543276787,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 2.8902015686035156,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.0352897085249424,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 2.8839168548583984,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.034633710980415344,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 2.9500584602355957,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03378494456410408,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 2.9374589920043945,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035448409616947174,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 2.882023811340332,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.0342826247215271,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 2.917515993118286,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.035327695310115814,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 2.911947727203369,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.03480467572808266,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 2.932415723800659,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.033533770591020584,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 2.958162546157837,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.03515322506427765,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 2.9077601432800293,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.03477735444903374,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 2.9195446968078613,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.03331083804368973,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 2.9775338172912598,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.03524516895413399,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 2.9310715198516846,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.03693820536136627,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 2.9650168418884277,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.03709941357374191,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 2.947303533554077,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.03669232130050659,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 2.982583522796631,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.034720368683338165,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 2.9623732566833496,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.03503575548529625,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 2.974088668823242,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.035023026168346405,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 2.9098939895629883,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.033050745725631714,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 2.9042611122131348,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.031803570687770844,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 2.985610008239746,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.03282999247312546,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 2.960763692855835,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.031893156468868256,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 2.9578733444213867,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.032003387808799744,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 2.9249801635742188,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.033047523349523544,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 2.9870409965515137,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.03174681216478348,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 2.973292350769043,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.03340791165828705,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 2.950939893722534,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.031847093254327774,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 2.952643871307373,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.032836299389600754,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.019166946411133,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.034089937806129456,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 2.964816093444824,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.031224727630615234,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.0118958950042725,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.031020160764455795,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 2.9807839393615723,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.030780989676713943,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 2.9778659343719482,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.030965285375714302,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 2.951444625854492,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.030757633969187737,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 2.9213666915893555,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.030994407832622528,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 2.947293996810913,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.03153432533144951,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 2.957968235015869,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.0315159447491169,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 2.995504140853882,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.031412918120622635,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 2.9789376258850098,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.03151796758174896,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 2.9787068367004395,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.03126099333167076,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.0285658836364746,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.03302513808012009,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.0173215866088867,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.032137684524059296,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 2.9977149963378906,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.031667932868003845,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 2.9881951808929443,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.03230196237564087,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 2.9845004081726074,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.03160998225212097,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 2.957639694213867,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.032368507236242294,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 2.969564914703369,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.031104926019906998,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 2.9951319694519043,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03458526358008385,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 2.955331563949585,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.268571376800537,
+ "eval_runtime": 50.4836,
+ "eval_samples_per_second": 48.372,
+ "eval_steps_per_second": 1.525,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.03699421510100365,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 2.850717544555664,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.0552988164126873,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 2.8399477005004883,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.057985689491033554,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 2.857229709625244,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.054917413741350174,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 2.8211488723754883,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.05402746424078941,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 2.8415608406066895,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.054649870842695236,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 2.8209891319274902,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.05316663533449173,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 2.848078966140747,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05129793658852577,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 2.8209495544433594,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.04771186783909798,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 2.848766565322876,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.04471662640571594,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 2.8405871391296387,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.04101414605975151,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 2.8075788021087646,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03750685229897499,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 2.8461761474609375,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.038734205067157745,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 2.81836199760437,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.042089853435754776,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 2.8583831787109375,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.043621618300676346,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 2.856410026550293,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03975158557295799,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 2.857800006866455,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.03914690762758255,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 2.8430817127227783,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03641999512910843,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 2.877098321914673,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.03628985583782196,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 2.8480634689331055,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.03707660734653473,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 2.8734331130981445,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.035252269357442856,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 2.853245258331299,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.03399394825100899,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 2.865544557571411,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.034946687519550323,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 2.8984780311584473,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.03414832055568695,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 2.8756165504455566,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.035122696310281754,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 2.836993932723999,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03457608446478844,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 2.8713862895965576,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.033898934721946716,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 2.8357291221618652,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.03419061005115509,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 2.9146008491516113,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.033601172268390656,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 2.9022369384765625,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.03507845103740692,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 2.898716688156128,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.03497530519962311,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 2.9049177169799805,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03447664901614189,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 2.8999228477478027,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.0327288918197155,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 2.8973376750946045,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.033647146075963974,
+ "learning_rate": 0.000231465389734324,
+ "loss": 2.907761335372925,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.03163779154419899,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 2.8606152534484863,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.03331096097826958,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 2.907522201538086,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.03455515205860138,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 2.8875679969787598,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.03523692488670349,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 2.9399242401123047,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.03430662304162979,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 2.920187473297119,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.03257483243942261,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 2.8856418132781982,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.03351624682545662,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 2.901949882507324,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.032566532492637634,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 2.9538679122924805,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.03294380381703377,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 2.9028542041778564,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.033534467220306396,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 2.920865058898926,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.03345954790711403,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 2.92004656791687,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.035632308572530746,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 2.9112181663513184,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.03495397791266441,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 2.9229912757873535,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.03374304622411728,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 2.9415764808654785,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.03485272079706192,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 2.9459822177886963,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.03648442402482033,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 2.930266857147217,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.03564995899796486,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 2.9442505836486816,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.03357839956879616,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 2.9406819343566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.03164827451109886,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 2.907163619995117,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.03588789328932762,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 2.919649839401245,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.035855360329151154,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 2.9178667068481445,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.03332711383700371,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 2.964325428009033,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.03329632803797722,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 2.920757293701172,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.036365825682878494,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 2.938229560852051,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.03682578727602959,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 2.92783522605896,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.03180156275629997,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 2.923375129699707,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.03338734805583954,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 2.909148693084717,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.03403759375214577,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 2.954238176345825,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.03311001881957054,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 2.9092135429382324,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.033959005028009415,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 2.962198257446289,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.03287528082728386,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 2.9339723587036133,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.031624604016542435,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 2.931535243988037,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.031244613230228424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 2.927706718444824,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.03359205275774002,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 2.950260877609253,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.03514735773205757,
+ "learning_rate": 0.00022244633283095,
+ "loss": 2.976957082748413,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.031232791021466255,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 2.9199209213256836,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.033515579998493195,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 2.9487085342407227,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03924408182501793,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 2.9397668838500977,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.309950351715088,
+ "eval_runtime": 50.2121,
+ "eval_samples_per_second": 48.634,
+ "eval_steps_per_second": 1.533,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03797328472137451,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 2.7964625358581543,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05182477831840515,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 2.7840116024017334,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05243600532412529,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 2.7720894813537598,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.049961578100919724,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 2.7968246936798096,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.05004527047276497,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 2.819459915161133,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05132897198200226,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 2.8177990913391113,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.04748285934329033,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 2.7943527698516846,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.04613078758120537,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 2.7934889793395996,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.04528726637363434,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 2.8120880126953125,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.04460810869932175,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 2.8086094856262207,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.04940483346581459,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 2.783414840698242,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.04755563288927078,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 2.786266326904297,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.039832018315792084,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 2.8260536193847656,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.04122614488005638,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 2.8158113956451416,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.04259834438562393,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 2.8159971237182617,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.0441596657037735,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 2.8201799392700195,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.044361185282468796,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 2.809572219848633,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.044445883482694626,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 2.820591926574707,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.041293222457170486,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 2.8170418739318848,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.04198037087917328,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 2.8230514526367188,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.040943801403045654,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 2.8785529136657715,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.04062051326036453,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 2.8197708129882812,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.04014413058757782,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 2.845383644104004,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.03760908544063568,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 2.859769344329834,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.03789070248603821,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 2.8416380882263184,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.040182486176490784,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 2.830772876739502,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04032180830836296,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 2.820589542388916,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.042562272399663925,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 2.8250768184661865,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.039164844900369644,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 2.8789186477661133,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.036587074398994446,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 2.8665075302124023,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03641028329730034,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 2.8668501377105713,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.03790752962231636,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 2.831110954284668,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03793574497103691,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 2.859065055847168,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.03824981302022934,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 2.894343852996826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.038279470056295395,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 2.849274158477783,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.036916445940732956,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 2.822936534881592,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.035255685448646545,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 2.9116382598876953,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.03675640746951103,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 2.8434290885925293,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.03706246614456177,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 2.8097033500671387,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.03486589714884758,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 2.8667774200439453,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.034129124134778976,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 2.8889684677124023,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.035698726773262024,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 2.8895792961120605,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.03454627841711044,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 2.863913059234619,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.032894328236579895,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 2.844942569732666,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.03542465344071388,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 2.868215799331665,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.03403910622000694,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 2.867429256439209,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.03446296975016594,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 2.860053300857544,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.03430024906992912,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 2.8507087230682373,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.03218062222003937,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 2.871540069580078,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.033100277185440063,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 2.8558998107910156,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.03332056477665901,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 2.8602569103240967,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.03521702438592911,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 2.856260299682617,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.03411679342389107,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 2.869317054748535,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.03389536961913109,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 2.8770289421081543,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.03530183807015419,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 2.88539457321167,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.03610125556588173,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 2.8895177841186523,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.0340193547308445,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 2.888007164001465,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.03255763277411461,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 2.8962326049804688,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.036177389323711395,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 2.87697172164917,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.034373488277196884,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 2.9129204750061035,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.03416284918785095,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 2.8778076171875,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.03269495069980621,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 2.9018735885620117,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.0355791412293911,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 2.8736732006073,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.03452740237116814,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 2.9138574600219727,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.03226732090115547,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 2.8750157356262207,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.03449986129999161,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 2.8816564083099365,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.033824801445007324,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 2.8952057361602783,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.034431736916303635,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 2.92415452003479,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.032803770154714584,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 2.9336395263671875,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.03375089541077614,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 2.885989189147949,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.03369738161563873,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 2.901681900024414,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03740214183926582,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 2.9028968811035156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.352105140686035,
+ "eval_runtime": 50.4518,
+ "eval_samples_per_second": 48.403,
+ "eval_steps_per_second": 1.526,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03719676285982132,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 2.7506203651428223,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.04799883812665939,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 2.7436680793762207,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.04992787167429924,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 2.785435199737549,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.04670284688472748,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 2.765993118286133,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.04460717365145683,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 2.7355451583862305,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.04692559316754341,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 2.753324508666992,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.043969348073005676,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 2.739989757537842,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.0410359688103199,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 2.7363996505737305,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.04173228144645691,
+ "learning_rate": 0.000201141724176723,
+ "loss": 2.751185178756714,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.04204905033111572,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 2.770327091217041,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.040645647794008255,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 2.7410969734191895,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.04042249917984009,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 2.771155834197998,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 2.767975330352783,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.039667751640081406,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 2.761502265930176,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.04095076397061348,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 2.784851551055908,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.0422712042927742,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 2.7631585597991943,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.04403155669569969,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 2.757833480834961,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.04208405315876007,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 2.7453598976135254,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.03917219862341881,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 2.7579214572906494,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03793885558843613,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 2.7856955528259277,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.04241294413805008,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 2.8095250129699707,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.043874748051166534,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 2.784102439880371,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.043710801750421524,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 2.7893218994140625,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.03927089646458626,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 2.772472620010376,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.037578973919153214,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 2.791860580444336,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.03958947956562042,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 2.80277156829834,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.041760701686143875,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 2.810274600982666,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.03933396562933922,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 2.7954909801483154,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03693462163209915,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 2.8056864738464355,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.036877796053886414,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 2.8361990451812744,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.03616270422935486,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 2.8347058296203613,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.036112796515226364,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 2.805556535720825,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.039925526827573776,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 2.8245959281921387,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.038287658244371414,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 2.805874824523926,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.03738972172141075,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 2.800257682800293,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03568391501903534,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 2.815108299255371,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03511364385485649,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 2.79067325592041,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.035567332059144974,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 2.8227243423461914,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.03635167330503464,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 2.7965641021728516,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.038816045969724655,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 2.7981600761413574,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.03729109838604927,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 2.815075159072876,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.03504854813218117,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 2.8329830169677734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.036570195108652115,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 2.821903944015503,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.035399142652750015,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 2.8031158447265625,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03458433970808983,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 2.804354190826416,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.0365789458155632,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 2.8451900482177734,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.03705596551299095,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 2.861931085586548,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03605107590556145,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 2.8246450424194336,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.03616880625486374,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 2.832051992416382,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.03935617581009865,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 2.8594398498535156,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.038325585424900055,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 2.837932825088501,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.03649872541427612,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 2.864701271057129,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.036109115928411484,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 2.8517560958862305,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.03894130885601044,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 2.8157949447631836,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.038372039794921875,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 2.8479137420654297,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.03452896699309349,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 2.8600716590881348,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.03632326424121857,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 2.8263001441955566,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.03763658180832863,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 2.8175363540649414,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.03593018278479576,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 2.828946113586426,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.03475581854581833,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 2.856628894805908,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.03520223870873451,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 2.870553970336914,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.035959191620349884,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 2.8436391353607178,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.03600265458226204,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 2.86441969871521,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.03651043772697449,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 2.8605189323425293,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.03449200838804245,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 2.8725595474243164,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.03539549931883812,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 2.8368237018585205,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.03668821230530739,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 2.882417917251587,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.03392226621508598,
+ "learning_rate": 0.000186516746349841,
+ "loss": 2.8854141235351562,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.0369710847735405,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 2.885317325592041,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.03497837111353874,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 2.880661964416504,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.03550030663609505,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 2.833157539367676,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03926094248890877,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 2.8475146293640137,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.394933223724365,
+ "eval_runtime": 50.6913,
+ "eval_samples_per_second": 48.174,
+ "eval_steps_per_second": 1.519,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.043481744825839996,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 2.7305550575256348,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.053153567016124725,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 2.717087984085083,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.052458375692367554,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.686765670776367,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.04814518243074417,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 2.72470760345459,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04681197181344032,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.693404197692871,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.04720525071024895,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.6897501945495605,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.047475386410951614,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 2.741422176361084,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.049529723823070526,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.6869325637817383,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.04822194576263428,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.6873905658721924,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.04628577083349228,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 2.729592800140381,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.04367085173726082,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 2.7228331565856934,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.04440176114439964,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 2.7436013221740723,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.044516388326883316,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 2.7400388717651367,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0438699945807457,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.6777939796447754,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.04249744489789009,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.701598882675171,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.038822516798973083,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 2.732938289642334,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.0413549467921257,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 2.7495951652526855,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.04422483593225479,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 2.7503349781036377,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.04198349639773369,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 2.7643909454345703,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.041043829172849655,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 2.7135918140411377,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03967289999127388,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.7103633880615234,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.04005147144198418,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 2.748504161834717,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.04070824012160301,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.6916699409484863,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04390577971935272,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 2.750455379486084,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.043122485280036926,
+ "learning_rate": 0.000179445406945268,
+ "loss": 2.7423312664031982,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03647756204009056,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 2.7361197471618652,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.03861029073596001,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 2.775204658508301,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04231081157922745,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 2.7497947216033936,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.04208704084157944,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 2.7545595169067383,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.03729049488902092,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 2.7283387184143066,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.0379655547440052,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 2.78347110748291,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04115770384669304,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 2.7719345092773438,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.04086964204907417,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 2.796412944793701,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.03825974091887474,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 2.7443013191223145,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.036880265921354294,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 2.7366080284118652,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03627486899495125,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 2.8126893043518066,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03680504858493805,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 2.7860169410705566,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.037588510662317276,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 2.784741163253784,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.036638807505369186,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 2.787360191345215,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.033687569200992584,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 2.7557525634765625,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03601320460438728,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 2.750558853149414,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.036490608006715775,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 2.7603161334991455,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03581147640943527,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 2.8177523612976074,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03664109483361244,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 2.773531198501587,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03521975129842758,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 2.802985906600952,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03567864000797272,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 2.7715282440185547,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.03634249418973923,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 2.783874988555908,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03536146879196167,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 2.8035964965820312,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.036448799073696136,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 2.787716865539551,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.036559030413627625,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 2.778810501098633,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03604830801486969,
+ "learning_rate": 0.000173176617304673,
+ "loss": 2.782071113586426,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03640980273485184,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 2.820803642272949,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.034831587225198746,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 2.8025026321411133,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.03584841638803482,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 2.8057172298431396,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.035353146493434906,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 2.821279525756836,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03484848141670227,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 2.817362070083618,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.0363977774977684,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 2.798384666442871,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03677841275930405,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 2.8462960720062256,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.033444907516241074,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 2.8119957447052,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.0360054150223732,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 2.7947516441345215,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.036171745508909225,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 2.815831184387207,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.03641003742814064,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 2.808131694793701,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.03541484475135803,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 2.8605761528015137,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.03575175255537033,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 2.840233564376831,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.036277081817388535,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 2.7937965393066406,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.03619410842657089,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 2.850496768951416,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.03414769843220711,
+ "learning_rate": 0.00016935382741164,
+ "loss": 2.8395838737487793,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.037818793207407,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 2.8413162231445312,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.03481597453355789,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 2.8057632446289062,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.03372214362025261,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 2.806955575942993,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.035471074283123016,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 2.8164381980895996,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.040505655109882355,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 2.821949005126953,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.442426681518555,
+ "eval_runtime": 50.5463,
+ "eval_samples_per_second": 48.312,
+ "eval_steps_per_second": 1.523,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.040360890328884125,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.6719675064086914,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.047384459525346756,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.631821632385254,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.041619714349508286,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.6519036293029785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.04094138368964195,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.656247615814209,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.04390440508723259,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 2.689321994781494,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.042488861829042435,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.661299705505371,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.04079974815249443,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 2.7099952697753906,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.040120258927345276,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.672731399536133,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.045239564031362534,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.6671290397644043,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.04565443471074104,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.688469886779785,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.04325062781572342,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.6866841316223145,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.042317189276218414,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.6908586025238037,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.04298596829175949,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.6890554428100586,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.04236339032649994,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.6589977741241455,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.04177287593483925,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.6802594661712646,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.04414846748113632,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 2.7234978675842285,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.046593230217695236,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.7059357166290283,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.04565853998064995,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.7076125144958496,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.04481668397784233,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.705566644668579,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.04029017314314842,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.6801295280456543,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.03784259408712387,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 2.718494176864624,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.03952431306242943,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.692405939102173,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.0413871668279171,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.7163681983947754,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.04014147073030472,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 2.7119476795196533,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.039213456213474274,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.702211380004883,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.03716482222080231,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.7004847526550293,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.03758992999792099,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 2.759352445602417,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.04070932790637016,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.7059261798858643,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03782462328672409,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.7063827514648438,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.038561753928661346,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.702890396118164,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.040485069155693054,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 2.728665351867676,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.04195099696516991,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 2.739861488342285,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.04205700010061264,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 2.732515811920166,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.037712372839450836,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.7063097953796387,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03902430832386017,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 2.7210097312927246,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0451044961810112,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 2.7702722549438477,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.04305797442793846,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 2.7315967082977295,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.037595830857753754,
+ "learning_rate": 0.000159218843594243,
+ "loss": 2.755042791366577,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03781610727310181,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.6963937282562256,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.04262562468647957,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 2.739180088043213,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.03966844081878662,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 2.731743335723877,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.03667006641626358,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 2.768737316131592,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.04043777659535408,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 2.744929313659668,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.044052302837371826,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 2.771634578704834,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.03826981410384178,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 2.7353196144104004,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03758488968014717,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 2.7528347969055176,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.04268691688776016,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 2.7540318965911865,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.041325002908706665,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 2.7647171020507812,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.037344686686992645,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 2.76705265045166,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.042450353503227234,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.7144453525543213,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.04224000498652458,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 2.759082794189453,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.038104742765426636,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 2.7497215270996094,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03811940923333168,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 2.7790403366088867,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.041614845395088196,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 2.7288498878479004,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.03948371857404709,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 2.748359203338623,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.03905073553323746,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 2.7725560665130615,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.041112206876277924,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 2.762186050415039,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03879137709736824,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 2.734889030456543,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.03886166214942932,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 2.8005852699279785,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.04294531047344208,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 2.7776103019714355,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.03838416188955307,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 2.761643409729004,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.038427963852882385,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 2.7586638927459717,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.04066694155335426,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 2.760824680328369,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.037848424166440964,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 2.778289318084717,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.03844791650772095,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 2.749744415283203,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.039958324283361435,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 2.7985734939575195,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03874100372195244,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 2.774866819381714,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.036840081214904785,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 2.805913209915161,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.03725936636328697,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 2.781439781188965,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.04035738855600357,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 2.758686065673828,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.04106197506189346,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 2.771879196166992,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.042643509805202484,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 2.7765140533447266,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.4830546379089355,
+ "eval_runtime": 50.4391,
+ "eval_samples_per_second": 48.415,
+ "eval_steps_per_second": 1.527,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.04445832222700119,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.6106953620910645,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.05079226940870285,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.6472721099853516,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.04819434881210327,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.629481792449951,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.047417085617780685,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.6317343711853027,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.04363427683711052,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.6411972045898438,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.04454582557082176,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.6416287422180176,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.04812787473201752,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.6330764293670654,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.04939486086368561,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.6355319023132324,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.043980687856674194,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.666226863861084,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.040836285799741745,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.6286075115203857,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.042456481605768204,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.6513962745666504,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.042755771428346634,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.662870407104492,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.04120723903179169,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.6305460929870605,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03987514600157738,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.593961715698242,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.038635555654764175,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.6607577800750732,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.04158136621117592,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.6735172271728516,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.03990459814667702,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.6527466773986816,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.04141661524772644,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.6488356590270996,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.041069503873586655,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.664846897125244,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.041106708347797394,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.661078691482544,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.04089801013469696,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.671553134918213,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.042857419699430466,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.631235361099243,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.040352705866098404,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.675701141357422,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.03929511830210686,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.682508945465088,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.03924228623509407,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.708465337753296,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.04071180149912834,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.643385887145996,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.0444309264421463,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.700355291366577,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04204278439283371,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.6900219917297363,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.04269995540380478,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.6792659759521484,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03987446427345276,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.6759490966796875,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.040391139686107635,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.673100471496582,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.044392503798007965,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.7062530517578125,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04163298010826111,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.6927719116210938,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.03959506377577782,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.675417423248291,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.04166583716869354,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.6413064002990723,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.04037674888968468,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 2.7350051403045654,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03836590051651001,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.6984071731567383,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.039869897067546844,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.690366268157959,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.041240107268095016,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.681495189666748,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03860987350344658,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.665367603302002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03899926319718361,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.700815200805664,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03890778869390488,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 2.7328848838806152,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03876316174864769,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.68580961227417,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03872651979327202,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 2.734034776687622,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.04012880101799965,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.700725555419922,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.038113679736852646,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.6887927055358887,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03834610804915428,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 2.7499499320983887,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03771091252565384,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 2.720296859741211,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.03800208866596222,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 2.7197604179382324,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.03881968930363655,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.7176647186279297,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.0374908410012722,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.690718173980713,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.038332752883434296,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.715179920196533,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.038576558232307434,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 2.746676445007324,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.0400109626352787,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.703824043273926,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.037498198449611664,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 2.716090679168701,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.03695759177207947,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.713515520095825,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.03913547471165657,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 2.7210280895233154,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.03884539380669594,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.7117247581481934,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03601778298616409,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 2.7416625022888184,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.037836555391550064,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 2.734532594680786,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03748112544417381,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 2.731274127960205,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.03544784337282181,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 2.736314296722412,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.03774402663111687,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.7095437049865723,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.038037873804569244,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 2.756585121154785,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.03488243371248245,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 2.7442431449890137,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03599962964653969,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.707491397857666,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.03502672165632248,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 2.716686248779297,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.036128927022218704,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.7225708961486816,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.03735365718603134,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 2.7557473182678223,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.035510897636413574,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 2.7392797470092773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03622622787952423,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.7216439247131348,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.04298526421189308,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.7173662185668945,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.5357537269592285,
+ "eval_runtime": 49.8442,
+ "eval_samples_per_second": 48.993,
+ "eval_steps_per_second": 1.545,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.03985700011253357,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.6052660942077637,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04620801657438278,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.5740966796875,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.044712893664836884,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.6004700660705566,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.04012317582964897,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.600916862487793,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.044026028364896774,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.576073169708252,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.043087441474199295,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.626457691192627,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.04223402217030525,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.6100473403930664,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.04012474790215492,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.579037666320801,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.04075590521097183,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.6013243198394775,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.04263768345117569,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.5797343254089355,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.0437036007642746,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.605804443359375,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.04141918942332268,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.6161954402923584,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.042701561003923416,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.588104724884033,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.04051755741238594,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.63607120513916,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.040545061230659485,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.578261613845825,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.04212940111756325,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.61200213432312,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.040179986506700516,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.6383485794067383,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.039657603949308395,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.5792112350463867,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.04174843430519104,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.6256041526794434,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.04303969442844391,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.6175689697265625,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03980931639671326,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.645751476287842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.03945872560143471,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.6274805068969727,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.041664935648441315,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.63307785987854,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.04068799689412117,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.671088695526123,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03808875009417534,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.634873390197754,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.039898037910461426,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.612959384918213,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.039436567574739456,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.6136088371276855,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03854961693286896,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.6199045181274414,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.039016980677843094,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.6532626152038574,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.04286973178386688,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.6704297065734863,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.04259027913212776,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.643263339996338,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.0383823961019516,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.611354351043701,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03800790011882782,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.6505303382873535,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.04109592363238335,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.6408276557922363,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03953855484724045,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.648859977722168,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03878771886229515,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.6458206176757812,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.038982708007097244,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.6521599292755127,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.040703918784856796,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.6366281509399414,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.03949141874909401,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.6558713912963867,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.038015007972717285,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.661327362060547,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.03950005769729614,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.6772499084472656,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.04112942889332771,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.6699628829956055,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03833170235157013,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.639796733856201,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03846743702888489,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.665966033935547,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.04084270820021629,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.6835081577301025,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.039603691548109055,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.645036220550537,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.03755602613091469,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.636746883392334,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03712184354662895,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.655641555786133,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.03938367962837219,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.6591956615448,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.038674671202898026,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.6812376976013184,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.038195330649614334,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.656327486038208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.036538265645504,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.6915717124938965,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03923949599266052,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.7005720138549805,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.037056393921375275,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.6582674980163574,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03739362582564354,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.7053751945495605,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.03783062472939491,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.696133852005005,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.0376109816133976,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.6649022102355957,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.038971349596977234,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.691373348236084,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03856601193547249,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.6802258491516113,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.038097307085990906,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.7032206058502197,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03931786119937897,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.6992850303649902,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03947259858250618,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.698995590209961,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.03853216394782066,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.6777477264404297,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.039491306990385056,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.6987290382385254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03773514926433563,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.6838934421539307,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.03863334655761719,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.7135207653045654,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03979440778493881,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.701352119445801,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.03785509243607521,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.6999247074127197,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.038537297397851944,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 2.751741886138916,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.03880061209201813,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 2.748833179473877,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03738826885819435,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.683391809463501,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.0449042022228241,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.7020788192749023,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.582073211669922,
+ "eval_runtime": 50.3331,
+ "eval_samples_per_second": 48.517,
+ "eval_steps_per_second": 1.53,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.04957824945449829,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.5561342239379883,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.051621027290821075,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.55710768699646,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.04076312482357025,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.577810287475586,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.045077674090862274,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.5761308670043945,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.046679362654685974,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.5405921936035156,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.04333045333623886,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.538569927215576,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.04026757553219795,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.573428153991699,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.04426717758178711,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.5496468544006348,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.04363221675157547,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.563781976699829,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.041887130588293076,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.556375503540039,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.040823422372341156,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.5587844848632812,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.04291372001171112,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.5855326652526855,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.04177108779549599,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.5619170665740967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.04060564562678337,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.540727376937866,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.04139444977045059,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.5472490787506104,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.042231716215610504,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.577768087387085,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03968733921647072,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.624655246734619,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.040328193455934525,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.582808494567871,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.03915536776185036,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.6056838035583496,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.04003116860985756,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.578835964202881,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.04006281867623329,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.5787596702575684,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.04027514532208443,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.588151216506958,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03803051635622978,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.5702273845672607,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.04273895546793938,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.6007587909698486,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.040866825729608536,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.6010937690734863,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04029610753059387,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.5835423469543457,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04058460518717766,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.5980067253112793,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04066930338740349,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.6139941215515137,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03889986500144005,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.6235108375549316,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03889729455113411,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.6000213623046875,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.04100755229592323,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.571910858154297,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.04003692790865898,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.6206862926483154,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.039827097207307816,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.608489513397217,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03958888724446297,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.6149001121520996,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.03996104747056961,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.6105237007141113,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03948056325316429,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.6436567306518555,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.04011122137308121,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.6045284271240234,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.042783472687006,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.6284329891204834,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03877517580986023,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.6050562858581543,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03930690884590149,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.612881660461426,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03950059413909912,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.615734100341797,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03758558630943298,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.6356282234191895,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.04032298922538757,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.6540396213531494,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.038972049951553345,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.627459764480591,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.038282424211502075,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.630862236022949,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.038827721029520035,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.6224913597106934,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03931719809770584,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.6378655433654785,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03871314600110054,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.64253568649292,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03832100331783295,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.599008321762085,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.0384882353246212,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.655564785003662,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.038193441927433014,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.637547016143799,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03857916593551636,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.626636505126953,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03885370120406151,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.6606898307800293,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.038665495812892914,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.620786428451538,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03897741064429283,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.633166790008545,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.039391979575157166,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.6339595317840576,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03873669356107712,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.651726722717285,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.037708647549152374,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.652022361755371,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.03909820690751076,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.6521129608154297,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.038191623985767365,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.683443784713745,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03814183920621872,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.676152229309082,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03845800459384918,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.6696252822875977,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.038761205971241,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.6575536727905273,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0382290855050087,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.6571602821350098,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03818494826555252,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.651632785797119,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03811158239841461,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.6381514072418213,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03911985829472542,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.6576035022735596,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03915153071284294,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.6679182052612305,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.03922194242477417,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.658327102661133,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.0385582372546196,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.685403347015381,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.03856402263045311,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.631997585296631,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.045574504882097244,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.6455907821655273,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.630706787109375,
+ "eval_runtime": 50.343,
+ "eval_samples_per_second": 48.507,
+ "eval_steps_per_second": 1.53,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.04299811273813248,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.545808792114258,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.045796580612659454,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.5412497520446777,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.04268919304013252,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.4988510608673096,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.0424925871193409,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.525517463684082,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.04330209642648697,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.5031142234802246,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.041762471199035645,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.5395960807800293,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.04157201945781708,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.5294952392578125,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.04115210101008415,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.5068864822387695,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.042207006365060806,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.5413942337036133,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.04241922125220299,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.54648756980896,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.04021521657705307,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.5409865379333496,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.04181341454386711,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.5094356536865234,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.04286786913871765,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.5473742485046387,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.041187625378370285,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.560746669769287,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.04282910376787186,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.5277230739593506,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.04170593246817589,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.540250778198242,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.04097793623805046,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.5618107318878174,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.04386851564049721,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.5429463386535645,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.0451020784676075,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.548234462738037,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03941088169813156,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.530017375946045,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.04631779342889786,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.5817222595214844,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.048373859375715256,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.5460047721862793,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.04272238537669182,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.554980754852295,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.041539616882801056,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.579061985015869,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.04433664306998253,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.5660667419433594,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.0416690930724144,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.5579190254211426,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.039509691298007965,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.5495524406433105,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04351760447025299,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.5485236644744873,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.043173156678676605,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.5312328338623047,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03899776190519333,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.600411891937256,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.04337446019053459,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.5862069129943848,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03929191455245018,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.5661725997924805,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04101184010505676,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.5867369174957275,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.04147906228899956,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.5857348442077637,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.04191290959715843,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.5731992721557617,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.040721844881772995,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.5813965797424316,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.04001890867948532,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.5747785568237305,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.03962702676653862,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.5933737754821777,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.039932604879140854,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.576674461364746,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.039338432252407074,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.5782008171081543,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.038861170411109924,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.610973358154297,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.039563652127981186,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.601799726486206,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.03961700573563576,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.575131893157959,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03986692801117897,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.615356922149658,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03836435824632645,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.5949208736419678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03855856508016586,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.582308292388916,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03856024891138077,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.6111443042755127,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.039093017578125,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.5793564319610596,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.038725245743989944,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.6067581176757812,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.0380857028067112,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.646773338317871,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03855524957180023,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.5918726921081543,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.037457797676324844,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.617043972015381,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03869820013642311,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.6114768981933594,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03711248189210892,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.5982959270477295,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.038945212960243225,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.6045446395874023,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03832259029150009,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.6037979125976562,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03934606537222862,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.6163489818573,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.03900086134672165,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.6069135665893555,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03861298784613609,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.606722831726074,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.038183990865945816,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.623232841491699,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03909875825047493,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.6339173316955566,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03840210661292076,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.622582197189331,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03828253969550133,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.5958876609802246,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0381259024143219,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.5990607738494873,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03966856002807617,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.607971668243408,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.037702202796936035,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.6083734035491943,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.038444772362709045,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.594470977783203,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.03691141679883003,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.613913059234619,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.038606252521276474,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.605672836303711,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.037440285086631775,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.6157281398773193,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.037814900279045105,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.6148059368133545,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.043760623782873154,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.5653724670410156,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.68303108215332,
+ "eval_runtime": 50.4878,
+ "eval_samples_per_second": 48.368,
+ "eval_steps_per_second": 1.525,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.04217155650258064,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.4836583137512207,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.042030464857816696,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.4783711433410645,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.04258885607123375,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.4772050380706787,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.04180571064352989,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.47452974319458,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.0409804992377758,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.5100820064544678,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.043249111622571945,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.4972734451293945,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.039890021085739136,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.4979066848754883,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.04291659593582153,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.514129638671875,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.04137815535068512,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.5026347637176514,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.04209413006901741,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.522614002227783,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.041909098625183105,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.4863014221191406,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.04288608953356743,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.4999732971191406,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.04160395637154579,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.50962495803833,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.0438438281416893,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.529510021209717,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.038461409509181976,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.520538806915283,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.04244046285748482,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.478781223297119,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.040004923939704895,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.496654510498047,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.04082861170172691,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.518338680267334,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.040987443178892136,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.4999513626098633,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.03953491151332855,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.520509719848633,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03990933299064636,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.5096051692962646,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.04095710813999176,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.5433297157287598,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.038632433861494064,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.5112204551696777,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.040502630174160004,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.51623272895813,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.0398704893887043,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.512924909591675,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.040709007531404495,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.554586410522461,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.0406210832297802,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.532557487487793,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.03889348730444908,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.525108575820923,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.04015064612030983,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.535057544708252,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.041169796139001846,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.5659022331237793,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.038989391177892685,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.5369086265563965,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04099688306450844,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.5184175968170166,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039829690009355545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.560692071914673,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.04020677134394646,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.510549783706665,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.04203888401389122,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.5451645851135254,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03780362010002136,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.555356502532959,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.041025105863809586,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.52476167678833,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.039431892335414886,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.544099807739258,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.04021573066711426,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.5828700065612793,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.04179903864860535,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.524014472961426,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03899601846933365,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.5616817474365234,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.04191318526864052,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.5606822967529297,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.041458819061517715,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.5735056400299072,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.04002033919095993,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.571634292602539,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.040181905031204224,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.5569653511047363,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.038881316781044006,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.530872344970703,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.04001537337899208,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.5545527935028076,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.039509210735559464,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.55985164642334,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03836548700928688,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.55220890045166,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.04025840759277344,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.5837690830230713,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03974878787994385,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.558772563934326,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.039377935230731964,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.5522451400756836,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.04093307629227638,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.5774669647216797,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.04037470743060112,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.5393733978271484,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03933698311448097,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.55163311958313,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.03948088735342026,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.5783205032348633,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03987252712249756,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.5497002601623535,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.03954288363456726,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.5974178314208984,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.039707835763692856,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.5708115100860596,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03880715370178223,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.540225028991699,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.038271792232990265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.5887298583984375,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03849945217370987,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.5666351318359375,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.03806721419095993,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.5850937366485596,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.0387803390622139,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.6387054920196533,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03776047006249428,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.5704126358032227,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03837171196937561,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.606600761413574,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.036957480013370514,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.5789999961853027,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.03784535825252533,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.590054988861084,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.037523914128541946,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.5862486362457275,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.03855528682470322,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.5896804332733154,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.038172684609889984,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.606858253479004,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.04597382992506027,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.5731430053710938,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.7312445640563965,
+ "eval_runtime": 50.1493,
+ "eval_samples_per_second": 48.695,
+ "eval_steps_per_second": 1.535,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.040082935243844986,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.45803165435791,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.04075422137975693,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.4373645782470703,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.042375173419713974,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.445497751235962,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.039676643908023834,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.4527292251586914,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.040263883769512177,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.443726062774658,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.040542446076869965,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.509228229522705,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.039546187967061996,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.4740281105041504,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.0399077869951725,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.4613571166992188,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.039962101727724075,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.468287944793701,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.038253072649240494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.4556660652160645,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.0400204136967659,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.501220464706421,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03921268507838249,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.4513282775878906,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03845704346895218,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.4371821880340576,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.04014671593904495,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.4713072776794434,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03871054947376251,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.498952865600586,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0389760285615921,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.479438543319702,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.03928804025053978,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.5111570358276367,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03890380635857582,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.492244005203247,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03893847391009331,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.4832241535186768,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.038555655628442764,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.473994493484497,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.03958532586693764,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.527578115463257,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.038863442838191986,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.5026330947875977,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.040074966847896576,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.5063109397888184,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.039247799664735794,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.4882097244262695,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.0395796075463295,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.4660420417785645,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.03938698396086693,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.479153871536255,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.040745142847299576,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.500609874725342,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03822821378707886,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.5150585174560547,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.040366094559431076,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.5044541358947754,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03831731155514717,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.5147018432617188,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.039682671427726746,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.507406711578369,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03898734226822853,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.4951791763305664,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.03892234340310097,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.512556791305542,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.04019404947757721,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.5360331535339355,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03920825198292732,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.548699378967285,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.0385311096906662,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.476630687713623,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03797920420765877,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.5356290340423584,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.040193237364292145,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.4933314323425293,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03881823644042015,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.5130982398986816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.04049588739871979,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.536677837371826,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.03893541917204857,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.517401695251465,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.039656784385442734,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.5111303329467773,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.04180547967553139,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.5226423740386963,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03851541131734848,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.5222482681274414,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.040863897651433945,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.552680253982544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03873211517930031,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.5296826362609863,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.039825811982154846,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.542590856552124,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.039727456867694855,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.545682191848755,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03819560632109642,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.4885478019714355,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.038781970739364624,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.5392041206359863,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.037839289754629135,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.50968337059021,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03794427216053009,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.5143909454345703,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.038396988064050674,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.528244733810425,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03887055069208145,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.5750365257263184,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03852991387248039,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.5416150093078613,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.037425361573696136,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.5320820808410645,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.038594916462898254,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.5445098876953125,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.036525335162878036,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.5580685138702393,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.038885194808244705,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.5431809425354004,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.036410942673683167,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.5070929527282715,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03869079798460007,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.533327579498291,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03747229650616646,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.5502867698669434,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.038209374994039536,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.525596857070923,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03808588162064552,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.5384087562561035,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03895717114210129,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.536189556121826,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.037719666957855225,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.5489635467529297,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.038963451981544495,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.546940803527832,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03746771812438965,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.529160976409912,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.03972191363573074,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.5499086380004883,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03742365911602974,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.5488295555114746,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03897562995553017,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.5693445205688477,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.046561457216739655,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.5275135040283203,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.774092674255371,
+ "eval_runtime": 50.243,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.04310769960284233,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 2.455329418182373,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.04115631803870201,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 2.4503700733184814,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.04250654950737953,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 2.4287707805633545,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.04200764000415802,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 2.408581256866455,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.04174887016415596,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 2.4646167755126953,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.04023091495037079,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 2.452735662460327,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.04020898789167404,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 2.4360930919647217,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.04034535959362984,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 2.4493408203125,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.038866039365530014,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 2.444572925567627,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.040859535336494446,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 2.4709620475769043,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.038747649639844894,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 2.502328872680664,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.04010903835296631,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 2.452136993408203,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.03887498751282692,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 2.4268274307250977,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.039471857249736786,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 2.4390530586242676,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.039436157792806625,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 2.457540273666382,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.03839588910341263,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 2.4189352989196777,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.03989185765385628,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 2.4496283531188965,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.038148149847984314,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 2.430187225341797,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.03895123675465584,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 2.456756591796875,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.03771301358938217,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 2.4913525581359863,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.039358749985694885,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 2.441742420196533,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.03876911476254463,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 2.4574320316314697,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.037895120680332184,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 2.455977201461792,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.04011163488030434,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 2.4823124408721924,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.03813024237751961,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 2.4586939811706543,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.038185495883226395,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 2.477020502090454,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.03910696506500244,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 2.4435808658599854,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.03780550882220268,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 2.4697678089141846,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.04022105038166046,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 2.4914755821228027,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.03748264163732529,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 2.4811134338378906,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.04051728919148445,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 2.483469247817993,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.03732391819357872,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 2.44366455078125,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.040184859186410904,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 2.4943008422851562,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.038120243698358536,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 2.5120961666107178,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03963751718401909,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 2.454674482345581,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.03934590518474579,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 2.4781625270843506,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03906507045030594,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 2.499715805053711,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03866249695420265,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 2.4727044105529785,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.039640989154577255,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 2.472585678100586,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.038402147591114044,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 2.4913134574890137,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.038213010877370834,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 2.4726927280426025,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.038407694548368454,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 2.4980733394622803,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.03732699900865555,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 2.452296733856201,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.03862643241882324,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 2.500091552734375,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03833173215389252,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 2.48945689201355,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.0383443720638752,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 2.490124464035034,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03888486325740814,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 2.486175298690796,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.039034388959407806,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 2.5080575942993164,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.0378594771027565,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 2.487119674682617,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.03863426670432091,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 2.530083179473877,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03876124694943428,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 2.4840517044067383,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.03762609139084816,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 2.5303611755371094,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.03891080617904663,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 2.481356620788574,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.037616338580846786,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 2.483151435852051,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.03813810646533966,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 2.5110888481140137,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.03819670155644417,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 2.4839940071105957,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.03859946131706238,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 2.515028953552246,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.039357881993055344,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 2.5162839889526367,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.037815842777490616,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 2.507180690765381,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.03841688856482506,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 2.475879669189453,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.03819884732365608,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 2.5124359130859375,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.03893854841589928,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 2.5462636947631836,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.0385054275393486,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 2.510305881500244,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.038480646908283234,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 2.5255255699157715,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.037873707711696625,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 2.512570858001709,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03887968510389328,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 2.500234603881836,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.03837333992123604,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 2.4938583374023438,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.03967248648405075,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 2.556959629058838,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03754139691591263,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 2.4908037185668945,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.038954541087150574,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 2.534503936767578,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.038607776165008545,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 2.51754093170166,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.04736033082008362,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 2.5003013610839844,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.816370964050293,
+ "eval_runtime": 68.4143,
+ "eval_samples_per_second": 35.694,
+ "eval_steps_per_second": 1.125,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.04273151233792305,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 2.4306299686431885,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.04039552062749863,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 2.409675121307373,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.04268364980816841,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 2.4427895545959473,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.04097979888319969,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 2.420304775238037,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.039833199232816696,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 2.42132568359375,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.041350919753313065,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 2.412353038787842,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.038745488971471786,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 2.454707622528076,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.04082830250263214,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 2.38602876663208,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.03963732719421387,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 2.383242130279541,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.03869694471359253,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 2.439220666885376,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.03943706303834915,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 2.402729034423828,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.03850548341870308,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 2.408879041671753,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.03907497599720955,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 2.399122714996338,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.03952746093273163,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 2.394047260284424,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.03915352001786232,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 2.4356861114501953,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.038304653018713,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 2.4435911178588867,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.038589294999837875,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 2.464827060699463,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.03882160037755966,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 2.430630922317505,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.03818007558584213,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 2.448643207550049,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.0377669632434845,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 2.445988655090332,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.03796133026480675,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 2.404486894607544,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.03926001489162445,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 2.4466686248779297,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.039072856307029724,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 2.434370756149292,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.03794293478131294,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 2.4526515007019043,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.03817367926239967,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 2.454181671142578,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.03743444010615349,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 2.4051332473754883,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.03823934122920036,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 2.440950870513916,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.037680771201848984,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 2.424182415008545,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.03805804252624512,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 2.436995506286621,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.03762711212038994,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 2.4504661560058594,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.038916368037462234,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 2.456270694732666,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.03798242285847664,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 2.4370179176330566,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.03832940757274628,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 2.4631423950195312,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.03953246399760246,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 2.474728584289551,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.03914801776409149,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 2.455716609954834,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.039025478065013885,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 2.457324981689453,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.038878221064805984,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 2.4345664978027344,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.03928461670875549,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 2.4644553661346436,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.038175635039806366,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 2.486578941345215,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.039955589920282364,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 2.4515676498413086,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.03977454826235771,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 2.476283073425293,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.0410095751285553,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 2.4638071060180664,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.039121199399232864,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 2.457387924194336,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.039507295936346054,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 2.421072006225586,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03740872070193291,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 2.4567294120788574,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.03857016563415527,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 2.4649035930633545,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03915343061089516,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 2.4596285820007324,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.038795482367277145,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 2.4964542388916016,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.03887787461280823,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 2.4733099937438965,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.03899268060922623,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 2.4697184562683105,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03819253295660019,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 2.496642589569092,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03926996886730194,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 2.47452974319458,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03837045282125473,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 2.483902931213379,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.03842247277498245,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 2.454066276550293,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.036577045917510986,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 2.458678960800171,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03910977020859718,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 2.483485221862793,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.038027506321668625,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 2.5040090084075928,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03782195970416069,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 2.4679486751556396,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.03840578719973564,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 2.48102068901062,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.036967333406209946,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 2.46134090423584,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.037848636507987976,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 2.4719927310943604,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.038168102502822876,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 2.4603271484375,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.037119310349226,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 2.4660191535949707,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.037567950785160065,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 2.494511127471924,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03776083514094353,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 2.456225872039795,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03801901638507843,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 2.505387306213379,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03765110298991203,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 2.507884979248047,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03827488794922829,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 2.4975950717926025,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.036955684423446655,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 2.487380266189575,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.03759743273258209,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 2.4582109451293945,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.037621885538101196,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 2.4814324378967285,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.045963410288095474,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 2.4642741680145264,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.863770008087158,
+ "eval_runtime": 68.4697,
+ "eval_samples_per_second": 35.665,
+ "eval_steps_per_second": 1.125,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.04062966629862785,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 2.442172050476074,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.038287948817014694,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 2.405311107635498,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.04026542603969574,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 2.4099082946777344,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.038703594356775284,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 2.376422166824341,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.037480585277080536,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 2.3852548599243164,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.03875007852911949,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 2.3894126415252686,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0372033454477787,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 2.3987064361572266,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.039135001599788666,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 2.411956787109375,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.03719179704785347,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 2.4044156074523926,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.037828974425792694,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 2.3910250663757324,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.03775754198431969,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 2.387831687927246,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.038350630551576614,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 2.40877103805542,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.03774121031165123,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 2.3962411880493164,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.038014668971300125,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 2.40413498878479,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.0375790148973465,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 2.3981637954711914,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.03802540898323059,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 2.4116415977478027,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.036843009293079376,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 2.3851754665374756,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.03665459156036377,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 2.383061408996582,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.03727758675813675,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 2.39738392829895,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.0375785157084465,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 2.4133663177490234,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.03708641231060028,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 2.428150177001953,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.03767220303416252,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 2.4267594814300537,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.0371648408472538,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 2.4222769737243652,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.03781408444046974,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 2.4184913635253906,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.03752940893173218,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 2.4109671115875244,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.03846004977822304,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 2.421489715576172,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.03720737248659134,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 2.4386188983917236,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.03695685416460037,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 2.4398770332336426,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.03825104609131813,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 2.430121898651123,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.03710686042904854,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 2.4191856384277344,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.037194497883319855,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 2.4068493843078613,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.03661312535405159,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 2.426170825958252,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.03765978291630745,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 2.455047130584717,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.03684741631150246,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 2.3987529277801514,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.03810873627662659,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 2.362081527709961,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.03709506243467331,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 2.4123587608337402,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.03859175369143486,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 2.4016692638397217,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.036426808685064316,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 2.403423309326172,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.03851226344704628,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 2.4468936920166016,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.036739759147167206,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 2.444204807281494,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.03750891238451004,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 2.4284138679504395,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.036855414509773254,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 2.4189958572387695,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.036995720118284225,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 2.4465389251708984,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.037109553813934326,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 2.4380016326904297,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03725552186369896,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 2.468137264251709,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03768225386738777,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 2.460725784301758,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.03695973381400108,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 2.4227092266082764,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.036497391760349274,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 2.4621572494506836,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03706617280840874,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 2.464228391647339,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.037703242152929306,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 2.4499683380126953,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.036480505019426346,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 2.4461894035339355,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.037404678761959076,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 2.462559700012207,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.037228964269161224,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 2.463881492614746,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03728632256388664,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 2.432051658630371,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.03713570162653923,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 2.451521396636963,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03734629601240158,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 2.4267449378967285,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.037481050938367844,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 2.4528884887695312,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03706306219100952,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 2.45501446723938,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.03735101595520973,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 2.433983087539673,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.03629044443368912,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 2.418869972229004,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.03723834827542305,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 2.4536566734313965,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.03613651916384697,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 2.4344124794006348,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.037208374589681625,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 2.4624600410461426,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.03710145130753517,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 2.4674739837646484,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.036229804158210754,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 2.4386086463928223,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.03795938938856125,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 2.4728736877441406,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03692123666405678,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 2.4710044860839844,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.036502107977867126,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 2.4429149627685547,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.03732654079794884,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 2.4504051208496094,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.037006136029958725,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 2.4577293395996094,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.0361783392727375,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 2.464695453643799,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.046150077134370804,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 2.4836559295654297,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.900355339050293,
+ "eval_runtime": 50.0176,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.03956114128232002,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 2.349515438079834,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.03587425872683525,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 2.3753416538238525,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.039466626942157745,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 2.400040626525879,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.03677786886692047,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 2.392055034637451,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.03721640259027481,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 2.3724422454833984,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.03862878680229187,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 2.397376298904419,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.03677244111895561,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 2.407611846923828,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.03830968216061592,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 2.3727073669433594,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.03766937181353569,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 2.361821413040161,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.0380096398293972,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 2.398216724395752,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.03683304786682129,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 2.370427370071411,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.038685187697410583,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 2.3790807723999023,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.03769568353891373,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 2.4126696586608887,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.03817220404744148,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 2.410825252532959,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.03754562512040138,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 2.373126983642578,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.03772398829460144,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 2.411992311477661,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.03720736876130104,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 2.4148311614990234,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.03782934322953224,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 2.39084529876709,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.03748996928334236,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 2.4023995399475098,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.03633532300591469,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 2.3859987258911133,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.03689171373844147,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 2.3874263763427734,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.03714725002646446,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 2.396787643432617,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.035764552652835846,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 2.353877544403076,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.037356097251176834,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 2.4033477306365967,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.036599431186914444,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 2.4072070121765137,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.036051809787750244,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 2.4134693145751953,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.03683406487107277,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 2.413142681121826,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.03556712716817856,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 2.35775089263916,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.03649084270000458,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 2.392144203186035,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.03678001090884209,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 2.4252169132232666,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.03567516431212425,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 2.4144906997680664,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.03674531355500221,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 2.4137630462646484,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.035740066319704056,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 2.3847055435180664,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.036076631397008896,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 2.3834192752838135,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.03575264289975166,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 2.399003028869629,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.03607596829533577,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 2.4216341972351074,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.03623746708035469,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 2.4010164737701416,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.036404695361852646,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 2.425797700881958,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.03555027395486832,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 2.4046592712402344,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03598731383681297,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 2.425351142883301,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.03695760667324066,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 2.4287943840026855,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.036055464297533035,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 2.4003586769104004,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.03603188320994377,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 2.4314146041870117,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.036420490592718124,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 2.401968479156494,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.035902198404073715,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 2.419374942779541,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.036591146141290665,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 2.411024808883667,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.03640354424715042,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 2.4238622188568115,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.036272309720516205,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 2.425605297088623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03576953709125519,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 2.412781238555908,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.03561127558350563,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 2.4257028102874756,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.035675641149282455,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 2.4074487686157227,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.035887718200683594,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 2.4378819465637207,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.035352110862731934,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 2.4102087020874023,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.035472944378852844,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 2.4218528270721436,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.03595568612217903,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 2.411935329437256,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03599581494927406,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 2.446230411529541,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.03611650690436363,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 2.4493770599365234,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.03564528003334999,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 2.4211535453796387,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03591608256101608,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 2.4136404991149902,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.035632189363241196,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 2.427894115447998,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03643954172730446,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 2.4349703788757324,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.036033231765031815,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 2.4253716468811035,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.0366411916911602,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 2.4237148761749268,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03559594601392746,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 2.403365135192871,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03642554208636284,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 2.4096932411193848,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.03650658205151558,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 2.3886308670043945,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.035379569977521896,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 2.377666473388672,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.03648681566119194,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 2.4412119388580322,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.036438021808862686,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 2.422165870666504,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.03647967055439949,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 2.4225406646728516,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03626762330532074,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 2.4280452728271484,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.04576266556978226,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 2.473209857940674,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.933586597442627,
+ "eval_runtime": 50.3073,
+ "eval_samples_per_second": 48.542,
+ "eval_steps_per_second": 1.531,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.03741564229130745,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 2.356867790222168,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.03606380894780159,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 2.399956703186035,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.037560511380434036,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 2.3565869331359863,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.03670021519064903,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 2.3884243965148926,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.03633797913789749,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 2.3388514518737793,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.036955300718545914,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 2.370142936706543,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.03551044315099716,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 2.3831279277801514,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.03706502169370651,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 2.373241901397705,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.03601884841918945,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 2.4030237197875977,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.0370602123439312,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 2.401350498199463,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.03567498177289963,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 2.387460470199585,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.0358564667403698,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 2.35788631439209,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.03606206178665161,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 2.3752503395080566,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.03567115589976311,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 2.3544509410858154,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.0361095666885376,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 2.363283634185791,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.03509826213121414,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 2.3433051109313965,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.03592020273208618,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 2.3747477531433105,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.03598441928625107,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 2.4157907962799072,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.03556008264422417,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 2.3816566467285156,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.035836536437273026,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 2.371532917022705,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.035036537796258926,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 2.3769121170043945,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.03581574559211731,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 2.3590636253356934,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.035967014729976654,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 2.3859806060791016,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.03528635948896408,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 2.387582778930664,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.03585169464349747,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 2.3773069381713867,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.03569261357188225,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 2.4134440422058105,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.03513651713728905,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 2.410511016845703,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.03496205061674118,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 2.33015513420105,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.0346609428524971,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 2.3364882469177246,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.03536591678857803,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 2.3825058937072754,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.03536584600806236,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 2.356165647506714,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.0351298563182354,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 2.3813717365264893,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.03520410135388374,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 2.407329559326172,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.03543079271912575,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 2.4088997840881348,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.03551093488931656,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 2.3831825256347656,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.0357256755232811,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 2.4320068359375,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.03537716343998909,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 2.399661064147949,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.0358147956430912,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 2.4017081260681152,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.035032857209444046,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 2.3979480266571045,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.034801892936229706,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 2.3917276859283447,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.03565487265586853,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 2.3940529823303223,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.03497626259922981,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 2.3955321311950684,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.03519856557250023,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 2.40267276763916,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03468102216720581,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 2.360779285430908,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.03541756793856621,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 2.3801469802856445,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.03534531593322754,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 2.4282922744750977,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.035485196858644485,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 2.3939390182495117,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.03595820814371109,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 2.4026193618774414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.035464588552713394,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 2.3880958557128906,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.035215772688388824,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 2.4125471115112305,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.035822439938783646,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 2.372713088989258,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.03570287302136421,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 2.4120328426361084,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03500843420624733,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 2.4093079566955566,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.035660404711961746,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 2.390624761581421,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.035391755402088165,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 2.4110302925109863,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.03526972606778145,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 2.3838064670562744,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.03585533797740936,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 2.4087419509887695,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.035079073160886765,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 2.3899316787719727,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.03600093722343445,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 2.3978629112243652,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.03578227385878563,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 2.388434410095215,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.035483088344335556,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 2.4380664825439453,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.03560888022184372,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 2.37380051612854,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03534746542572975,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 2.381844997406006,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.03493297100067139,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 2.415374279022217,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.03512784466147423,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 2.420445442199707,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.03524825721979141,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 2.4160499572753906,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.03456146642565727,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 2.3830275535583496,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.03503827750682831,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 2.3855955600738525,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.0347282849252224,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 2.3743722438812256,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.034973081201314926,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 2.3746042251586914,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.035174764692783356,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 2.4262585639953613,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.04474984109401703,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 2.4101905822753906,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 4.961191654205322,
+ "eval_runtime": 50.2144,
+ "eval_samples_per_second": 48.631,
+ "eval_steps_per_second": 1.533,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397379912664,
+ "grad_norm": 0.03544795513153076,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 2.3467583656311035,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02794759825328,
+ "grad_norm": 0.03499323129653931,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 2.3463077545166016,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041921397379916,
+ "grad_norm": 0.03458429500460625,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 2.3684964179992676,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05589519650655,
+ "grad_norm": 0.036117106676101685,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 2.3468122482299805,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069868995633186,
+ "grad_norm": 0.03516614809632301,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 2.352813959121704,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083842794759825,
+ "grad_norm": 0.03498499095439911,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 2.316892385482788,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09781659388646,
+ "grad_norm": 0.03459184616804123,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 2.3535971641540527,
+ "step": 3247
+ },
+ {
+ "epoch": 45.1117903930131,
+ "grad_norm": 0.03503220155835152,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 2.339611053466797,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12576419213974,
+ "grad_norm": 0.034688521176576614,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 2.34190034866333,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13973799126637,
+ "grad_norm": 0.03556007519364357,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 2.376223087310791,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15371179039301,
+ "grad_norm": 0.034861959517002106,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 2.337797164916992,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16768558951965,
+ "grad_norm": 0.03464028611779213,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 2.3565101623535156,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18165938864629,
+ "grad_norm": 0.034500785171985626,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 2.350430488586426,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19563318777293,
+ "grad_norm": 0.035571519285440445,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 2.3797411918640137,
+ "step": 3254
+ },
+ {
+ "epoch": 45.209606986899566,
+ "grad_norm": 0.0344654880464077,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 2.3908467292785645,
+ "step": 3255
+ },
+ {
+ "epoch": 45.223580786026204,
+ "grad_norm": 0.03459201380610466,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 2.400790214538574,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237554585152836,
+ "grad_norm": 0.03495858609676361,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 2.358297348022461,
+ "step": 3257
+ },
+ {
+ "epoch": 45.251528384279474,
+ "grad_norm": 0.034321483224630356,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 2.332610607147217,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26550218340611,
+ "grad_norm": 0.03452828526496887,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 2.370588779449463,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27947598253275,
+ "grad_norm": 0.03522554785013199,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 2.3470711708068848,
+ "step": 3260
+ },
+ {
+ "epoch": 45.29344978165939,
+ "grad_norm": 0.03506860509514809,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 2.3914642333984375,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30742358078603,
+ "grad_norm": 0.034449439495801926,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 2.3569746017456055,
+ "step": 3262
+ },
+ {
+ "epoch": 45.32139737991266,
+ "grad_norm": 0.03481285646557808,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 2.376476287841797,
+ "step": 3263
+ },
+ {
+ "epoch": 45.3353711790393,
+ "grad_norm": 0.03533336520195007,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 2.379058361053467,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34934497816594,
+ "grad_norm": 0.03438378497958183,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 2.3832168579101562,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36331877729258,
+ "grad_norm": 0.03482973948121071,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 2.3949944972991943,
+ "step": 3266
+ },
+ {
+ "epoch": 45.377292576419215,
+ "grad_norm": 0.03449374809861183,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 2.39650821685791,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391266375545854,
+ "grad_norm": 0.034988947212696075,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 2.359069585800171,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40524017467249,
+ "grad_norm": 0.034574978053569794,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 2.3523616790771484,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419213973799124,
+ "grad_norm": 0.034897733479738235,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 2.356788158416748,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43318777292576,
+ "grad_norm": 0.03468713536858559,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 2.36248779296875,
+ "step": 3271
+ },
+ {
+ "epoch": 45.4471615720524,
+ "grad_norm": 0.03520844876766205,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 2.3777847290039062,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46113537117904,
+ "grad_norm": 0.034913405776023865,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 2.3949086666107178,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47510917030568,
+ "grad_norm": 0.03464305028319359,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 2.3658978939056396,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48908296943232,
+ "grad_norm": 0.03485545516014099,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 2.3667874336242676,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50305676855895,
+ "grad_norm": 0.03571419417858124,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 2.364713668823242,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51703056768559,
+ "grad_norm": 0.0351533517241478,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 2.403256893157959,
+ "step": 3277
+ },
+ {
+ "epoch": 45.531004366812226,
+ "grad_norm": 0.03490987420082092,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 2.3816776275634766,
+ "step": 3278
+ },
+ {
+ "epoch": 45.544978165938865,
+ "grad_norm": 0.0346958190202713,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 2.370480537414551,
+ "step": 3279
+ },
+ {
+ "epoch": 45.5589519650655,
+ "grad_norm": 0.03486493229866028,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 2.395937919616699,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57292576419214,
+ "grad_norm": 0.03507503867149353,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 2.375458240509033,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58689956331878,
+ "grad_norm": 0.03491530939936638,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 2.3625006675720215,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60087336244541,
+ "grad_norm": 0.03483256325125694,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 2.378946304321289,
+ "step": 3283
+ },
+ {
+ "epoch": 45.61484716157205,
+ "grad_norm": 0.034725457429885864,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 2.4007019996643066,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62882096069869,
+ "grad_norm": 0.03434886410832405,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 2.37076997756958,
+ "step": 3285
+ },
+ {
+ "epoch": 45.64279475982533,
+ "grad_norm": 0.03474406152963638,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 2.3501904010772705,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65676855895197,
+ "grad_norm": 0.034975893795490265,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 2.3651843070983887,
+ "step": 3287
+ },
+ {
+ "epoch": 45.670742358078606,
+ "grad_norm": 0.034320201724767685,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 2.3897461891174316,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68471615720524,
+ "grad_norm": 0.03485933318734169,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 2.3851661682128906,
+ "step": 3289
+ },
+ {
+ "epoch": 45.698689956331876,
+ "grad_norm": 0.03446898236870766,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 2.385742664337158,
+ "step": 3290
+ },
+ {
+ "epoch": 45.712663755458514,
+ "grad_norm": 0.034284062683582306,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 2.409876585006714,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72663755458515,
+ "grad_norm": 0.03422316163778305,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 2.3693995475769043,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74061135371179,
+ "grad_norm": 0.03458261862397194,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 2.377983808517456,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75458515283843,
+ "grad_norm": 0.03469141200184822,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 2.3879199028015137,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76855895196506,
+ "grad_norm": 0.034237731248140335,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 2.340254783630371,
+ "step": 3295
+ },
+ {
+ "epoch": 45.7825327510917,
+ "grad_norm": 0.034546516835689545,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 2.383939266204834,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79650655021834,
+ "grad_norm": 0.035073187202215195,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 2.3644862174987793,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81048034934498,
+ "grad_norm": 0.03448503091931343,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 2.3918375968933105,
+ "step": 3298
+ },
+ {
+ "epoch": 45.82445414847162,
+ "grad_norm": 0.03475399687886238,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 2.3922924995422363,
+ "step": 3299
+ },
+ {
+ "epoch": 45.838427947598255,
+ "grad_norm": 0.03442436084151268,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 2.3648247718811035,
+ "step": 3300
+ },
+ {
+ "epoch": 45.852401746724894,
+ "grad_norm": 0.03457336872816086,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 2.38790225982666,
+ "step": 3301
+ },
+ {
+ "epoch": 45.866375545851525,
+ "grad_norm": 0.03504461422562599,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 2.394456624984741,
+ "step": 3302
+ },
+ {
+ "epoch": 45.880349344978164,
+ "grad_norm": 0.034410346299409866,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 2.3654885292053223,
+ "step": 3303
+ },
+ {
+ "epoch": 45.8943231441048,
+ "grad_norm": 0.03477916121482849,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 2.438561201095581,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90829694323144,
+ "grad_norm": 0.034644369035959244,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 2.3709254264831543,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92227074235808,
+ "grad_norm": 0.03526078537106514,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 2.391244411468506,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93624454148472,
+ "grad_norm": 0.034179385751485825,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 2.3659472465515137,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95021834061135,
+ "grad_norm": 0.03395437076687813,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 2.3652544021606445,
+ "step": 3308
+ },
+ {
+ "epoch": 45.96419213973799,
+ "grad_norm": 0.03508385643362999,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 2.429990291595459,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97816593886463,
+ "grad_norm": 0.034287381917238235,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 2.3744704723358154,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992139737991266,
+ "grad_norm": 0.034412361681461334,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 2.377514123916626,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.04405122995376587,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 2.3881022930145264,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 4.983613014221191,
+ "eval_runtime": 50.0107,
+ "eval_samples_per_second": 48.83,
+ "eval_steps_per_second": 1.54,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397379912664,
+ "grad_norm": 0.034205757081508636,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 2.326348304748535,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02794759825328,
+ "grad_norm": 0.03395381569862366,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 2.3584201335906982,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041921397379916,
+ "grad_norm": 0.033769287168979645,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 2.335300922393799,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05589519650655,
+ "grad_norm": 0.03464857488870621,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 2.3571181297302246,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069868995633186,
+ "grad_norm": 0.035339850932359695,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 2.35709810256958,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083842794759825,
+ "grad_norm": 0.03412050008773804,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 2.359005928039551,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09781659388646,
+ "grad_norm": 0.03431673347949982,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 2.3512134552001953,
+ "step": 3319
+ },
+ {
+ "epoch": 46.1117903930131,
+ "grad_norm": 0.03385891765356064,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 2.3437912464141846,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12576419213974,
+ "grad_norm": 0.034501250833272934,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 2.309063196182251,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13973799126637,
+ "grad_norm": 0.03392376750707626,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 2.375920534133911,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15371179039301,
+ "grad_norm": 0.03455920144915581,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 2.361884117126465,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16768558951965,
+ "grad_norm": 0.033986181020736694,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 2.342618227005005,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18165938864629,
+ "grad_norm": 0.03440745547413826,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 2.3409676551818848,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19563318777293,
+ "grad_norm": 0.03457338735461235,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 2.3375277519226074,
+ "step": 3326
+ },
+ {
+ "epoch": 46.209606986899566,
+ "grad_norm": 0.03443068638443947,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 2.352419853210449,
+ "step": 3327
+ },
+ {
+ "epoch": 46.223580786026204,
+ "grad_norm": 0.03378622606396675,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 2.365471124649048,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237554585152836,
+ "grad_norm": 0.03426756709814072,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 2.348655939102173,
+ "step": 3329
+ },
+ {
+ "epoch": 46.251528384279474,
+ "grad_norm": 0.03406665474176407,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 2.3430371284484863,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26550218340611,
+ "grad_norm": 0.034273840487003326,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 2.323458194732666,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27947598253275,
+ "grad_norm": 0.03415151685476303,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 2.3543059825897217,
+ "step": 3332
+ },
+ {
+ "epoch": 46.29344978165939,
+ "grad_norm": 0.034363120794296265,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 2.3570704460144043,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30742358078603,
+ "grad_norm": 0.03436797857284546,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 2.334927797317505,
+ "step": 3334
+ },
+ {
+ "epoch": 46.32139737991266,
+ "grad_norm": 0.034471750259399414,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 2.3680760860443115,
+ "step": 3335
+ },
+ {
+ "epoch": 46.3353711790393,
+ "grad_norm": 0.03426970914006233,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 2.3344368934631348,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34934497816594,
+ "grad_norm": 0.03447815030813217,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 2.3688955307006836,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36331877729258,
+ "grad_norm": 0.03494175896048546,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 2.3653883934020996,
+ "step": 3338
+ },
+ {
+ "epoch": 46.377292576419215,
+ "grad_norm": 0.03434788063168526,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 2.364281415939331,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391266375545854,
+ "grad_norm": 0.033913128077983856,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 2.378966808319092,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40524017467249,
+ "grad_norm": 0.0345773808658123,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 2.36167049407959,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419213973799124,
+ "grad_norm": 0.03435079753398895,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 2.351215362548828,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43318777292576,
+ "grad_norm": 0.034255605190992355,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 2.3562889099121094,
+ "step": 3343
+ },
+ {
+ "epoch": 46.4471615720524,
+ "grad_norm": 0.03374548256397247,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 2.326866865158081,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46113537117904,
+ "grad_norm": 0.034653548151254654,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 2.3498034477233887,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47510917030568,
+ "grad_norm": 0.0343499630689621,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 2.3639049530029297,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48908296943232,
+ "grad_norm": 0.03424117714166641,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 2.379401922225952,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50305676855895,
+ "grad_norm": 0.03441810607910156,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 2.3492233753204346,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51703056768559,
+ "grad_norm": 0.034063611179590225,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 2.361361503601074,
+ "step": 3349
+ },
+ {
+ "epoch": 46.531004366812226,
+ "grad_norm": 0.034642964601516724,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 2.367445468902588,
+ "step": 3350
+ },
+ {
+ "epoch": 46.544978165938865,
+ "grad_norm": 0.033667873591184616,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 2.3392715454101562,
+ "step": 3351
+ },
+ {
+ "epoch": 46.5589519650655,
+ "grad_norm": 0.03421713039278984,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 2.379251003265381,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57292576419214,
+ "grad_norm": 0.034595903009176254,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 2.345740556716919,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58689956331878,
+ "grad_norm": 0.034141238778829575,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 2.3758461475372314,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60087336244541,
+ "grad_norm": 0.03434207662940025,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 2.3811287879943848,
+ "step": 3355
+ },
+ {
+ "epoch": 46.61484716157205,
+ "grad_norm": 0.033822156488895416,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 2.350736141204834,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62882096069869,
+ "grad_norm": 0.03412671387195587,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 2.3612396717071533,
+ "step": 3357
+ },
+ {
+ "epoch": 46.64279475982533,
+ "grad_norm": 0.034536831080913544,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 2.3506968021392822,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65676855895197,
+ "grad_norm": 0.03425885736942291,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 2.384876251220703,
+ "step": 3359
+ },
+ {
+ "epoch": 46.670742358078606,
+ "grad_norm": 0.03475867584347725,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 2.34173583984375,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68471615720524,
+ "grad_norm": 0.03412758558988571,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 2.3469414710998535,
+ "step": 3361
+ },
+ {
+ "epoch": 46.698689956331876,
+ "grad_norm": 0.034378502517938614,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 2.370011568069458,
+ "step": 3362
+ },
+ {
+ "epoch": 46.712663755458514,
+ "grad_norm": 0.034339599311351776,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 2.3979086875915527,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72663755458515,
+ "grad_norm": 0.034581489861011505,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 2.3725013732910156,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74061135371179,
+ "grad_norm": 0.03462214022874832,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 2.393825054168701,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75458515283843,
+ "grad_norm": 0.03422679752111435,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 2.387533187866211,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76855895196506,
+ "grad_norm": 0.03416740894317627,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 2.355701446533203,
+ "step": 3367
+ },
+ {
+ "epoch": 46.7825327510917,
+ "grad_norm": 0.034101702272892,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 2.37374210357666,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79650655021834,
+ "grad_norm": 0.03360071778297424,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 2.3497815132141113,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81048034934498,
+ "grad_norm": 0.03395666182041168,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 2.367919445037842,
+ "step": 3370
+ },
+ {
+ "epoch": 46.82445414847162,
+ "grad_norm": 0.03407484292984009,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 2.364316463470459,
+ "step": 3371
+ },
+ {
+ "epoch": 46.838427947598255,
+ "grad_norm": 0.03409871831536293,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 2.36550235748291,
+ "step": 3372
+ },
+ {
+ "epoch": 46.852401746724894,
+ "grad_norm": 0.033768005669116974,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 2.3481884002685547,
+ "step": 3373
+ },
+ {
+ "epoch": 46.866375545851525,
+ "grad_norm": 0.03379856050014496,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 2.3563232421875,
+ "step": 3374
+ },
+ {
+ "epoch": 46.880349344978164,
+ "grad_norm": 0.03402867913246155,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 2.374826431274414,
+ "step": 3375
+ },
+ {
+ "epoch": 46.8943231441048,
+ "grad_norm": 0.034081049263477325,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 2.3765344619750977,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90829694323144,
+ "grad_norm": 0.03381729871034622,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 2.369032621383667,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92227074235808,
+ "grad_norm": 0.03404555469751358,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 2.3911468982696533,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93624454148472,
+ "grad_norm": 0.03423271328210831,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 2.3690848350524902,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95021834061135,
+ "grad_norm": 0.03410576656460762,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 2.398893356323242,
+ "step": 3380
+ },
+ {
+ "epoch": 46.96419213973799,
+ "grad_norm": 0.033941760659217834,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 2.4153010845184326,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97816593886463,
+ "grad_norm": 0.034279365092515945,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 2.352508783340454,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992139737991266,
+ "grad_norm": 0.03396369144320488,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 2.409329414367676,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.0438835434615612,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 2.388822555541992,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.002161026000977,
+ "eval_runtime": 62.6444,
+ "eval_samples_per_second": 38.982,
+ "eval_steps_per_second": 1.229,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397379912664,
+ "grad_norm": 0.03323378041386604,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 2.329977035522461,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02794759825328,
+ "grad_norm": 0.03283780440688133,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 2.334338903427124,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041921397379916,
+ "grad_norm": 0.03280683234333992,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 2.334400177001953,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05589519650655,
+ "grad_norm": 0.03301042690873146,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 2.3318395614624023,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069868995633186,
+ "grad_norm": 0.03385065868496895,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 2.359797954559326,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083842794759825,
+ "grad_norm": 0.03332481160759926,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 2.339799404144287,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09781659388646,
+ "grad_norm": 0.033259112387895584,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 2.3511886596679688,
+ "step": 3391
+ },
+ {
+ "epoch": 47.1117903930131,
+ "grad_norm": 0.03291812911629677,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 2.3360564708709717,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12576419213974,
+ "grad_norm": 0.03303162753582001,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 2.327877998352051,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13973799126637,
+ "grad_norm": 0.03339191898703575,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 2.3562958240509033,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15371179039301,
+ "grad_norm": 0.033780574798583984,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 2.364150285720825,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16768558951965,
+ "grad_norm": 0.03328995406627655,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 2.3374133110046387,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18165938864629,
+ "grad_norm": 0.03331570327281952,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 2.3618855476379395,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19563318777293,
+ "grad_norm": 0.03344457596540451,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 2.3367443084716797,
+ "step": 3398
+ },
+ {
+ "epoch": 47.209606986899566,
+ "grad_norm": 0.033356163650751114,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 2.3379318714141846,
+ "step": 3399
+ },
+ {
+ "epoch": 47.223580786026204,
+ "grad_norm": 0.032998811453580856,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 2.3622307777404785,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237554585152836,
+ "grad_norm": 0.03377016633749008,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 2.3784196376800537,
+ "step": 3401
+ },
+ {
+ "epoch": 47.251528384279474,
+ "grad_norm": 0.03383752703666687,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 2.372511863708496,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26550218340611,
+ "grad_norm": 0.03346426039934158,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 2.3549890518188477,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27947598253275,
+ "grad_norm": 0.03327345848083496,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 2.3417582511901855,
+ "step": 3404
+ },
+ {
+ "epoch": 47.29344978165939,
+ "grad_norm": 0.033149175345897675,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 2.357682228088379,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30742358078603,
+ "grad_norm": 0.03309345617890358,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 2.337557792663574,
+ "step": 3406
+ },
+ {
+ "epoch": 47.32139737991266,
+ "grad_norm": 0.03390280529856682,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 2.347020387649536,
+ "step": 3407
+ },
+ {
+ "epoch": 47.3353711790393,
+ "grad_norm": 0.03399088606238365,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 2.335157871246338,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34934497816594,
+ "grad_norm": 0.033970192074775696,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 2.3669886589050293,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36331877729258,
+ "grad_norm": 0.033094778656959534,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 2.3344759941101074,
+ "step": 3410
+ },
+ {
+ "epoch": 47.377292576419215,
+ "grad_norm": 0.03323310241103172,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 2.3463425636291504,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391266375545854,
+ "grad_norm": 0.03334403038024902,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 2.3443126678466797,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40524017467249,
+ "grad_norm": 0.033775050193071365,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 2.335235595703125,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419213973799124,
+ "grad_norm": 0.03360939025878906,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 2.389915943145752,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43318777292576,
+ "grad_norm": 0.033499035984277725,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 2.3635549545288086,
+ "step": 3415
+ },
+ {
+ "epoch": 47.4471615720524,
+ "grad_norm": 0.03311821445822716,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 2.3636727333068848,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46113537117904,
+ "grad_norm": 0.033795204013586044,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 2.3559582233428955,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47510917030568,
+ "grad_norm": 0.033537719398736954,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 2.328479290008545,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48908296943232,
+ "grad_norm": 0.03311320021748543,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 2.3360595703125,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50305676855895,
+ "grad_norm": 0.03319871425628662,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 2.3503241539001465,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51703056768559,
+ "grad_norm": 0.0332784578204155,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 2.3155570030212402,
+ "step": 3421
+ },
+ {
+ "epoch": 47.531004366812226,
+ "grad_norm": 0.033732518553733826,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 2.3688273429870605,
+ "step": 3422
+ },
+ {
+ "epoch": 47.544978165938865,
+ "grad_norm": 0.033471331000328064,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 2.389894962310791,
+ "step": 3423
+ },
+ {
+ "epoch": 47.5589519650655,
+ "grad_norm": 0.03332756459712982,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 2.3618335723876953,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57292576419214,
+ "grad_norm": 0.03328899294137955,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 2.3673267364501953,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58689956331878,
+ "grad_norm": 0.03371798247098923,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 2.3669679164886475,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60087336244541,
+ "grad_norm": 0.03361080214381218,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 2.3620004653930664,
+ "step": 3427
+ },
+ {
+ "epoch": 47.61484716157205,
+ "grad_norm": 0.033573247492313385,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 2.3650107383728027,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62882096069869,
+ "grad_norm": 0.03347403556108475,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 2.3553647994995117,
+ "step": 3429
+ },
+ {
+ "epoch": 47.64279475982533,
+ "grad_norm": 0.033694129437208176,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 2.3735339641571045,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65676855895197,
+ "grad_norm": 0.033447254449129105,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 2.371337413787842,
+ "step": 3431
+ },
+ {
+ "epoch": 47.670742358078606,
+ "grad_norm": 0.03356332331895828,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 2.3304262161254883,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68471615720524,
+ "grad_norm": 0.033427294343709946,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 2.3560166358947754,
+ "step": 3433
+ },
+ {
+ "epoch": 47.698689956331876,
+ "grad_norm": 0.033683713525533676,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 2.3602840900421143,
+ "step": 3434
+ },
+ {
+ "epoch": 47.712663755458514,
+ "grad_norm": 0.03332475572824478,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 2.3505759239196777,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72663755458515,
+ "grad_norm": 0.03323819115757942,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 2.3495521545410156,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74061135371179,
+ "grad_norm": 0.03348936513066292,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 2.3308987617492676,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75458515283843,
+ "grad_norm": 0.03354337811470032,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 2.3248324394226074,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76855895196506,
+ "grad_norm": 0.03317529335618019,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 2.345348596572876,
+ "step": 3439
+ },
+ {
+ "epoch": 47.7825327510917,
+ "grad_norm": 0.03321749344468117,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 2.3554017543792725,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79650655021834,
+ "grad_norm": 0.03339874744415283,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 2.349513530731201,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81048034934498,
+ "grad_norm": 0.03375881165266037,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 2.3471741676330566,
+ "step": 3442
+ },
+ {
+ "epoch": 47.82445414847162,
+ "grad_norm": 0.033341553062200546,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 2.3418383598327637,
+ "step": 3443
+ },
+ {
+ "epoch": 47.838427947598255,
+ "grad_norm": 0.03342767432332039,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 2.3694777488708496,
+ "step": 3444
+ },
+ {
+ "epoch": 47.852401746724894,
+ "grad_norm": 0.033199261873960495,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 2.373788356781006,
+ "step": 3445
+ },
+ {
+ "epoch": 47.866375545851525,
+ "grad_norm": 0.033722538501024246,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 2.348822832107544,
+ "step": 3446
+ },
+ {
+ "epoch": 47.880349344978164,
+ "grad_norm": 0.033557530492544174,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 2.3572471141815186,
+ "step": 3447
+ },
+ {
+ "epoch": 47.8943231441048,
+ "grad_norm": 0.03285473585128784,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 2.3376288414001465,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90829694323144,
+ "grad_norm": 0.03329910337924957,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 2.3655028343200684,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92227074235808,
+ "grad_norm": 0.03336254507303238,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 2.351567268371582,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93624454148472,
+ "grad_norm": 0.03343944251537323,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 2.3456168174743652,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95021834061135,
+ "grad_norm": 0.03373432904481888,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 2.3631486892700195,
+ "step": 3452
+ },
+ {
+ "epoch": 47.96419213973799,
+ "grad_norm": 0.03354727849364281,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 2.3785018920898438,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97816593886463,
+ "grad_norm": 0.03359883651137352,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 2.3312253952026367,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992139737991266,
+ "grad_norm": 0.03359445184469223,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 2.352940082550049,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.04329448565840721,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 2.3565306663513184,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.017584800720215,
+ "eval_runtime": 50.3739,
+ "eval_samples_per_second": 48.478,
+ "eval_steps_per_second": 1.529,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397379912664,
+ "grad_norm": 0.03284578397870064,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 2.290536880493164,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02794759825328,
+ "grad_norm": 0.033461082726716995,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 2.3333559036254883,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041921397379916,
+ "grad_norm": 0.03288089483976364,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 2.343383312225342,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05589519650655,
+ "grad_norm": 0.033486515283584595,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 2.3601269721984863,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069868995633186,
+ "grad_norm": 0.033231474459171295,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 2.353147268295288,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083842794759825,
+ "grad_norm": 0.033200278878211975,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 2.3276405334472656,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09781659388646,
+ "grad_norm": 0.03330542519688606,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 2.331395149230957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.1117903930131,
+ "grad_norm": 0.03330806642770767,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 2.3281502723693848,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12576419213974,
+ "grad_norm": 0.03292546421289444,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 2.328892707824707,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13973799126637,
+ "grad_norm": 0.033427171409130096,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 2.387333393096924,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15371179039301,
+ "grad_norm": 0.03307497128844261,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 2.3511667251586914,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16768558951965,
+ "grad_norm": 0.03289373964071274,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 2.350984811782837,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18165938864629,
+ "grad_norm": 0.03296426683664322,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 2.3394248485565186,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19563318777293,
+ "grad_norm": 0.03326547518372536,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 2.3823208808898926,
+ "step": 3470
+ },
+ {
+ "epoch": 48.209606986899566,
+ "grad_norm": 0.03369976207613945,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 2.3344039916992188,
+ "step": 3471
+ },
+ {
+ "epoch": 48.223580786026204,
+ "grad_norm": 0.033094603568315506,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 2.3643929958343506,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237554585152836,
+ "grad_norm": 0.032961975783109665,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 2.3659145832061768,
+ "step": 3473
+ },
+ {
+ "epoch": 48.251528384279474,
+ "grad_norm": 0.03295659273862839,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 2.327293634414673,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26550218340611,
+ "grad_norm": 0.03294310346245766,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 2.338787078857422,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27947598253275,
+ "grad_norm": 0.033252209424972534,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 2.3670427799224854,
+ "step": 3476
+ },
+ {
+ "epoch": 48.29344978165939,
+ "grad_norm": 0.03299534693360329,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 2.338686943054199,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30742358078603,
+ "grad_norm": 0.03270354121923447,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 2.333474636077881,
+ "step": 3478
+ },
+ {
+ "epoch": 48.32139737991266,
+ "grad_norm": 0.033291418105363846,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 2.3148255348205566,
+ "step": 3479
+ },
+ {
+ "epoch": 48.3353711790393,
+ "grad_norm": 0.03306952491402626,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 2.3327836990356445,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34934497816594,
+ "grad_norm": 0.03294600918889046,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 2.332559585571289,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36331877729258,
+ "grad_norm": 0.03316984325647354,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 2.3216333389282227,
+ "step": 3482
+ },
+ {
+ "epoch": 48.377292576419215,
+ "grad_norm": 0.03262004628777504,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 2.305288314819336,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391266375545854,
+ "grad_norm": 0.03307146206498146,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 2.3075780868530273,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40524017467249,
+ "grad_norm": 0.03331958130002022,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 2.3536577224731445,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419213973799124,
+ "grad_norm": 0.03300394117832184,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 2.3544082641601562,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43318777292576,
+ "grad_norm": 0.032703787088394165,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 2.344719648361206,
+ "step": 3487
+ },
+ {
+ "epoch": 48.4471615720524,
+ "grad_norm": 0.0329863578081131,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 2.336988925933838,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46113537117904,
+ "grad_norm": 0.03304270654916763,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 2.3418660163879395,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47510917030568,
+ "grad_norm": 0.03304314985871315,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 2.358281373977661,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48908296943232,
+ "grad_norm": 0.032605066895484924,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 2.3184661865234375,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50305676855895,
+ "grad_norm": 0.03315849229693413,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 2.3789143562316895,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51703056768559,
+ "grad_norm": 0.032824497669935226,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 2.3730194568634033,
+ "step": 3493
+ },
+ {
+ "epoch": 48.531004366812226,
+ "grad_norm": 0.03285757079720497,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 2.329148769378662,
+ "step": 3494
+ },
+ {
+ "epoch": 48.544978165938865,
+ "grad_norm": 0.03348008170723915,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 2.367091178894043,
+ "step": 3495
+ },
+ {
+ "epoch": 48.5589519650655,
+ "grad_norm": 0.032560110092163086,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 2.3377933502197266,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57292576419214,
+ "grad_norm": 0.03289530798792839,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 2.3633432388305664,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58689956331878,
+ "grad_norm": 0.03290358930826187,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 2.338395595550537,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60087336244541,
+ "grad_norm": 0.033047474920749664,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 2.3141157627105713,
+ "step": 3499
+ },
+ {
+ "epoch": 48.61484716157205,
+ "grad_norm": 0.0334029458463192,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 2.3345696926116943,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62882096069869,
+ "grad_norm": 0.03259047120809555,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 2.3140757083892822,
+ "step": 3501
+ },
+ {
+ "epoch": 48.64279475982533,
+ "grad_norm": 0.033316969871520996,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 2.375854969024658,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65676855895197,
+ "grad_norm": 0.032837875187397,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 2.3342065811157227,
+ "step": 3503
+ },
+ {
+ "epoch": 48.670742358078606,
+ "grad_norm": 0.03300522267818451,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 2.368929147720337,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68471615720524,
+ "grad_norm": 0.03291994333267212,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 2.3513312339782715,
+ "step": 3505
+ },
+ {
+ "epoch": 48.698689956331876,
+ "grad_norm": 0.032787371426820755,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 2.3582139015197754,
+ "step": 3506
+ },
+ {
+ "epoch": 48.712663755458514,
+ "grad_norm": 0.03327036648988724,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 2.3477113246917725,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72663755458515,
+ "grad_norm": 0.033198848366737366,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 2.359037399291992,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74061135371179,
+ "grad_norm": 0.03346986323595047,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 2.380547285079956,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75458515283843,
+ "grad_norm": 0.03323853760957718,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 2.374145746231079,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76855895196506,
+ "grad_norm": 0.033161748200654984,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 2.339508295059204,
+ "step": 3511
+ },
+ {
+ "epoch": 48.7825327510917,
+ "grad_norm": 0.032949451357126236,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 2.3226499557495117,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79650655021834,
+ "grad_norm": 0.03299284726381302,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 2.351292371749878,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81048034934498,
+ "grad_norm": 0.033264659345149994,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 2.36586332321167,
+ "step": 3514
+ },
+ {
+ "epoch": 48.82445414847162,
+ "grad_norm": 0.03356322646141052,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 2.3427915573120117,
+ "step": 3515
+ },
+ {
+ "epoch": 48.838427947598255,
+ "grad_norm": 0.03336580470204353,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 2.3623316287994385,
+ "step": 3516
+ },
+ {
+ "epoch": 48.852401746724894,
+ "grad_norm": 0.03335236385464668,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 2.362685203552246,
+ "step": 3517
+ },
+ {
+ "epoch": 48.866375545851525,
+ "grad_norm": 0.03323535993695259,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 2.3420047760009766,
+ "step": 3518
+ },
+ {
+ "epoch": 48.880349344978164,
+ "grad_norm": 0.033356569707393646,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 2.3554368019104004,
+ "step": 3519
+ },
+ {
+ "epoch": 48.8943231441048,
+ "grad_norm": 0.03312569856643677,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 2.3226113319396973,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90829694323144,
+ "grad_norm": 0.03362729027867317,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 2.369109869003296,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92227074235808,
+ "grad_norm": 0.03294530510902405,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 2.3491578102111816,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93624454148472,
+ "grad_norm": 0.032972801476716995,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 2.3381335735321045,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95021834061135,
+ "grad_norm": 0.033144913613796234,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 2.335948944091797,
+ "step": 3524
+ },
+ {
+ "epoch": 48.96419213973799,
+ "grad_norm": 0.033016134053468704,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 2.3437891006469727,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97816593886463,
+ "grad_norm": 0.03333478793501854,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 2.353050708770752,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992139737991266,
+ "grad_norm": 0.03290212154388428,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 2.335278034210205,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.043454837054014206,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 2.3529322147369385,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.026942253112793,
+ "eval_runtime": 50.588,
+ "eval_samples_per_second": 48.272,
+ "eval_steps_per_second": 1.522,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397379912664,
+ "grad_norm": 0.03272213414311409,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 2.358470916748047,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02794759825328,
+ "grad_norm": 0.03258707374334335,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 2.3175621032714844,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041921397379916,
+ "grad_norm": 0.03263687342405319,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 2.347489356994629,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05589519650655,
+ "grad_norm": 0.03269042447209358,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 2.3252768516540527,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069868995633186,
+ "grad_norm": 0.032511379569768906,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 2.3477094173431396,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083842794759825,
+ "grad_norm": 0.032945938408374786,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 2.3382468223571777,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09781659388646,
+ "grad_norm": 0.03263840451836586,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 2.330547332763672,
+ "step": 3535
+ },
+ {
+ "epoch": 49.1117903930131,
+ "grad_norm": 0.03280693292617798,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 2.343902826309204,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12576419213974,
+ "grad_norm": 0.03258862346410751,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 2.350273847579956,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13973799126637,
+ "grad_norm": 0.032795049250125885,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 2.3397507667541504,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15371179039301,
+ "grad_norm": 0.03268922120332718,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 2.354818820953369,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16768558951965,
+ "grad_norm": 0.03259938210248947,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 2.3116631507873535,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18165938864629,
+ "grad_norm": 0.03253501281142235,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 2.312913417816162,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19563318777293,
+ "grad_norm": 0.032863765954971313,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 2.3595387935638428,
+ "step": 3542
+ },
+ {
+ "epoch": 49.209606986899566,
+ "grad_norm": 0.032859474420547485,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 2.352628231048584,
+ "step": 3543
+ },
+ {
+ "epoch": 49.223580786026204,
+ "grad_norm": 0.03271467238664627,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 2.3418731689453125,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237554585152836,
+ "grad_norm": 0.03284106403589249,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 2.3232879638671875,
+ "step": 3545
+ },
+ {
+ "epoch": 49.251528384279474,
+ "grad_norm": 0.032720938324928284,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 2.332094192504883,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26550218340611,
+ "grad_norm": 0.0326230525970459,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 2.350435733795166,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27947598253275,
+ "grad_norm": 0.03277375549077988,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 2.3290939331054688,
+ "step": 3548
+ },
+ {
+ "epoch": 49.29344978165939,
+ "grad_norm": 0.03281543776392937,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 2.332894802093506,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30742358078603,
+ "grad_norm": 0.03269833326339722,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 2.3210792541503906,
+ "step": 3550
+ },
+ {
+ "epoch": 49.32139737991266,
+ "grad_norm": 0.032717589288949966,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 2.316425323486328,
+ "step": 3551
+ },
+ {
+ "epoch": 49.3353711790393,
+ "grad_norm": 0.03279196098446846,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 2.3056273460388184,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34934497816594,
+ "grad_norm": 0.03266247361898422,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 2.330960273742676,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36331877729258,
+ "grad_norm": 0.03286795690655708,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 2.3446266651153564,
+ "step": 3554
+ },
+ {
+ "epoch": 49.377292576419215,
+ "grad_norm": 0.0326760970056057,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 2.3227710723876953,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391266375545854,
+ "grad_norm": 0.03304259851574898,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 2.346090793609619,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40524017467249,
+ "grad_norm": 0.0327642448246479,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 2.383359432220459,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419213973799124,
+ "grad_norm": 0.032467350363731384,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 2.3049216270446777,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43318777292576,
+ "grad_norm": 0.03299632668495178,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 2.3454947471618652,
+ "step": 3559
+ },
+ {
+ "epoch": 49.4471615720524,
+ "grad_norm": 0.03295569494366646,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 2.344510555267334,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46113537117904,
+ "grad_norm": 0.03301328420639038,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 2.3510360717773438,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47510917030568,
+ "grad_norm": 0.03267255425453186,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 2.347398519515991,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48908296943232,
+ "grad_norm": 0.03293212130665779,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 2.3253097534179688,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50305676855895,
+ "grad_norm": 0.03308866173028946,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 2.346428394317627,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51703056768559,
+ "grad_norm": 0.03265579417347908,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 2.3211708068847656,
+ "step": 3565
+ },
+ {
+ "epoch": 49.531004366812226,
+ "grad_norm": 0.032872579991817474,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 2.345670700073242,
+ "step": 3566
+ },
+ {
+ "epoch": 49.544978165938865,
+ "grad_norm": 0.0327603705227375,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 2.3336575031280518,
+ "step": 3567
+ },
+ {
+ "epoch": 49.5589519650655,
+ "grad_norm": 0.032901864498853683,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 2.3381128311157227,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57292576419214,
+ "grad_norm": 0.03301917389035225,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 2.3274996280670166,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58689956331878,
+ "grad_norm": 0.0327996090054512,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 2.314074993133545,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60087336244541,
+ "grad_norm": 0.032785143703222275,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 2.327390193939209,
+ "step": 3571
+ },
+ {
+ "epoch": 49.61484716157205,
+ "grad_norm": 0.03264947235584259,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 2.3673770427703857,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62882096069869,
+ "grad_norm": 0.03300761058926582,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 2.3371059894561768,
+ "step": 3573
+ },
+ {
+ "epoch": 49.64279475982533,
+ "grad_norm": 0.033355943858623505,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 2.338531494140625,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65676855895197,
+ "grad_norm": 0.03298521786928177,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 2.330813407897949,
+ "step": 3575
+ },
+ {
+ "epoch": 49.670742358078606,
+ "grad_norm": 0.033006928861141205,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 2.3483173847198486,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68471615720524,
+ "grad_norm": 0.03296010568737984,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 2.334324359893799,
+ "step": 3577
+ },
+ {
+ "epoch": 49.698689956331876,
+ "grad_norm": 0.0332457534968853,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 2.3568367958068848,
+ "step": 3578
+ },
+ {
+ "epoch": 49.712663755458514,
+ "grad_norm": 0.032868728041648865,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 2.353609085083008,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72663755458515,
+ "grad_norm": 0.03308309242129326,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 2.3542752265930176,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74061135371179,
+ "grad_norm": 0.032940395176410675,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 2.364243984222412,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75458515283843,
+ "grad_norm": 0.03335334360599518,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 2.3195457458496094,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76855895196506,
+ "grad_norm": 0.03291478380560875,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 2.345151901245117,
+ "step": 3583
+ },
+ {
+ "epoch": 49.7825327510917,
+ "grad_norm": 0.0330558605492115,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 2.3324108123779297,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79650655021834,
+ "grad_norm": 0.03298746049404144,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 2.380898952484131,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81048034934498,
+ "grad_norm": 0.03332851454615593,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 2.3584694862365723,
+ "step": 3586
+ },
+ {
+ "epoch": 49.82445414847162,
+ "grad_norm": 0.03275987505912781,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 2.3239316940307617,
+ "step": 3587
+ },
+ {
+ "epoch": 49.838427947598255,
+ "grad_norm": 0.03289540857076645,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 2.3549489974975586,
+ "step": 3588
+ },
+ {
+ "epoch": 49.852401746724894,
+ "grad_norm": 0.033135250210762024,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 2.376988410949707,
+ "step": 3589
+ },
+ {
+ "epoch": 49.866375545851525,
+ "grad_norm": 0.0330120213329792,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 2.353938341140747,
+ "step": 3590
+ },
+ {
+ "epoch": 49.880349344978164,
+ "grad_norm": 0.033133365213871,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 2.367900848388672,
+ "step": 3591
+ },
+ {
+ "epoch": 49.8943231441048,
+ "grad_norm": 0.03281424567103386,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 2.340062141418457,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90829694323144,
+ "grad_norm": 0.033260490745306015,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 2.330998659133911,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92227074235808,
+ "grad_norm": 0.03320155292749405,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 2.3511219024658203,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93624454148472,
+ "grad_norm": 0.0329870767891407,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 2.3563451766967773,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95021834061135,
+ "grad_norm": 0.03311377391219139,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 2.347677707672119,
+ "step": 3596
+ },
+ {
+ "epoch": 49.96419213973799,
+ "grad_norm": 0.03272315859794617,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 2.3398756980895996,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97816593886463,
+ "grad_norm": 0.033136166632175446,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 2.3375775814056396,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992139737991266,
+ "grad_norm": 0.033223893493413925,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 2.3402605056762695,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.043772511184215546,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 2.37164306640625,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-3600/training_args.bin b/runs/baseline-lr6e-4/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-72/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-72/config.json b/runs/baseline-lr6e-4/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-72/generation_config.json b/runs/baseline-lr6e-4/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-72/model.safetensors b/runs/baseline-lr6e-4/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..a46660a0f3679a4d921229d0e28b83669249bc81
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2070c1af0abdda045c901688571922313c466131354fe6c13e4ccab2298e2248
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-72/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..c181036f389b3183ca0f01d4e0928ff48effd186
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a5615d2892435409f2ef0f99286a59ee23929f49c83625f63c1298166c30c34a
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-72/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3fc68e18ddaf65dfbdec55893d9a925ff5e43a18
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4dd7671ce88d469c49c0530724ac76b2306574002d1ecd1ca9294e41621fd96a
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-72/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..79d9de29ae34b3b0c10ea8ba0348aeafb0c12226
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3246ef1170ccca541a03b89ad6f20e01c51eb6834a2c2211c78c71c70f896879
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-72/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b3af158e6a18004b03a150114c32a235df6d16a0
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ad58a4676ce2fb1ab2dc9d3047a7897e6cdf70ba2536ad730ac906c3b3dd935
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-72/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-72/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-72/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5e9424e210a16c8555847a9af6a09e6440d47fd7
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-72/training_args.bin b/runs/baseline-lr6e-4/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265
diff --git a/runs/baseline-lr6e-4/checkpoint-720/chat_template.jinja b/runs/baseline-lr6e-4/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-720/config.json b/runs/baseline-lr6e-4/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-720/generation_config.json b/runs/baseline-lr6e-4/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-720/model.safetensors b/runs/baseline-lr6e-4/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f955afb915aeacf88b446babb26dcdbc7c38957e
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:655a89864e92b52861aea4e26b5373c08aac0529ebe3a1dc096a53f013ec79dd
+size 583356232
diff --git a/runs/baseline-lr6e-4/checkpoint-720/optimizer.pt b/runs/baseline-lr6e-4/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7eaaa81b51d857944f22751f486499f614a3e8bd
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8ec46e62205615fcdbd49233f700c5ddf3758048ef7c507d68e333cabcf99f9e
+size 1166825803
diff --git a/runs/baseline-lr6e-4/checkpoint-720/rng_state_0.pth b/runs/baseline-lr6e-4/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..64991ceae73e5d3389476a9b448c3cda96f73b10
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed1b9484e9cec07c14c677aaf97ebf9dff6fa34fc12bae83c65f98c9d2c9ad0d
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-720/rng_state_1.pth b/runs/baseline-lr6e-4/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fee3b6b64b847dcce05678311e2696b568d3185a
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d30790dc4fc4171a789605cefdf649fd85c4d4afb59efd35ee6fea409dad4915
+size 14917
diff --git a/runs/baseline-lr6e-4/checkpoint-720/scheduler.pt b/runs/baseline-lr6e-4/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1ad4496e97265851e778415cb1e0b7cabc192960
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b29c543d5f10e6bbf88f194409dab3a0645a2f26aa18a377a9b03e338e95d97b
+size 1465
diff --git a/runs/baseline-lr6e-4/checkpoint-720/tokenizer.json b/runs/baseline-lr6e-4/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-720/tokenizer_config.json b/runs/baseline-lr6e-4/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-lr6e-4/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/baseline-lr6e-4/checkpoint-720/trainer_state.json b/runs/baseline-lr6e-4/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..37a9c9ce72bcaea1f8d1ff3779b05e7f89ffaac3
--- /dev/null
+++ b/runs/baseline-lr6e-4/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.15563663840293884,
+ "learning_rate": 0.0,
+ "loss": 12.02140998840332,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.15705884993076324,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.024333953857422,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.15690062940120697,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986458778381348,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.15567649900913239,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.910189628601074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.1531330943107605,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.821757316589355,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.1531779170036316,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.705370903015137,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14122678339481354,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.58376693725586,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.12408939003944397,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477071762084961,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11496779322624207,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.376235961914062,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11130363494157791,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.291952133178711,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10855605453252792,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.226266860961914,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10752613097429276,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.166423797607422,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10643015056848526,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.115941047668457,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10565333068370819,
+ "learning_rate": 7.8e-05,
+ "loss": 11.067268371582031,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10575695335865021,
+ "learning_rate": 8.4e-05,
+ "loss": 11.016754150390625,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10564376413822174,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.96511173248291,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10619615763425827,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.911352157592773,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10557087510824203,
+ "learning_rate": 0.000102,
+ "loss": 10.854618072509766,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10564173012971878,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.788318634033203,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10578913241624832,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.718223571777344,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.1041376069188118,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.650690078735352,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10426034033298492,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.569635391235352,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10453300178050995,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.483402252197266,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10399028658866882,
+ "learning_rate": 0.000138,
+ "loss": 10.39930534362793,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10357137024402618,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.31282901763916,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10441011190414429,
+ "learning_rate": 0.00015,
+ "loss": 10.209775924682617,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10265699028968811,
+ "learning_rate": 0.000156,
+ "loss": 10.13088607788086,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10451555997133255,
+ "learning_rate": 0.000162,
+ "loss": 10.019058227539062,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10261383652687073,
+ "learning_rate": 0.000168,
+ "loss": 9.931230545043945,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1030813530087471,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.821533203125,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10171090066432953,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.734380722045898,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10156203806400299,
+ "learning_rate": 0.000186,
+ "loss": 9.626941680908203,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10055383294820786,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.515632629394531,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10052397847175598,
+ "learning_rate": 0.000198,
+ "loss": 9.409685134887695,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09803296625614166,
+ "learning_rate": 0.000204,
+ "loss": 9.322848320007324,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09727837145328522,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.208890914916992,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09700323641300201,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.096449851989746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0958331972360611,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.990998268127441,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09534486383199692,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.886119842529297,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09283226728439331,
+ "learning_rate": 0.000234,
+ "loss": 8.798086166381836,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.090545155107975,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.708080291748047,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.0888526439666748,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.606545448303223,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08683591336011887,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.499188423156738,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08164277672767639,
+ "learning_rate": 0.000258,
+ "loss": 8.44776725769043,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0788487046957016,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.357633590698242,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07711409777402878,
+ "learning_rate": 0.00027,
+ "loss": 8.274982452392578,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07370901107788086,
+ "learning_rate": 0.000276,
+ "loss": 8.179109573364258,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07272371649742126,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.092456817626953,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06673324853181839,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.034469604492188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.060327086597681046,
+ "learning_rate": 0.000294,
+ "loss": 7.964102268218994,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.06188536435365677,
+ "learning_rate": 0.0003,
+ "loss": 7.916594982147217,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05097507685422897,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.865417003631592,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04620466008782387,
+ "learning_rate": 0.000312,
+ "loss": 7.800740718841553,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.039028994739055634,
+ "learning_rate": 0.000318,
+ "loss": 7.781257152557373,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.03682560846209526,
+ "learning_rate": 0.000324,
+ "loss": 7.744991302490234,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.030008167028427124,
+ "learning_rate": 0.00033,
+ "loss": 7.708971977233887,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.033201832324266434,
+ "learning_rate": 0.000336,
+ "loss": 7.708688735961914,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.024599701166152954,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.683075904846191,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02121778577566147,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659955024719238,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.03220943734049797,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.649232387542725,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.018027223646640778,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.606717109680176,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.018039634451270103,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6229753494262695,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.01874876394867897,
+ "learning_rate": 0.000372,
+ "loss": 7.606905937194824,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.017796240746974945,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.586258888244629,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016290908679366112,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.5945143699646,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.014385750517249107,
+ "learning_rate": 0.00039,
+ "loss": 7.585179328918457,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.012986881658434868,
+ "learning_rate": 0.000396,
+ "loss": 7.567554950714111,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.015381937846541405,
+ "learning_rate": 0.000402,
+ "loss": 7.540204048156738,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01139051653444767,
+ "learning_rate": 0.000408,
+ "loss": 7.542448997497559,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.014459841884672642,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.511469841003418,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.011367827653884888,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.511076927185059,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.013557076454162598,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.514340877532959,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.5150980949401855,
+ "eval_runtime": 49.7301,
+ "eval_samples_per_second": 49.105,
+ "eval_steps_per_second": 1.548,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.03075517527759075,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.497503280639648,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.092325858771801,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.528814315795898,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.13725295662879944,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.5515642166137695,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.05790436640381813,
+ "learning_rate": 0.00045,
+ "loss": 7.51922607421875,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05660007894039154,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.483525276184082,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.02726002037525177,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.448378562927246,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024544518440961838,
+ "learning_rate": 0.000468,
+ "loss": 7.487757205963135,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.04069287329912186,
+ "learning_rate": 0.000474,
+ "loss": 7.477911949157715,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03265839070081711,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.4610137939453125,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.02868795581161976,
+ "learning_rate": 0.000486,
+ "loss": 7.415928840637207,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.03342539072036743,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.3866682052612305,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.040946342051029205,
+ "learning_rate": 0.000498,
+ "loss": 7.358907699584961,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.026175757870078087,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.333034992218018,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.026676790788769722,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.335115909576416,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.03685782849788666,
+ "learning_rate": 0.000516,
+ "loss": 7.3272600173950195,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.029827319085597992,
+ "learning_rate": 0.000522,
+ "loss": 7.328096389770508,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.024329446256160736,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.280237197875977,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.026012003421783447,
+ "learning_rate": 0.000534,
+ "loss": 7.2797932624816895,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03118261694908142,
+ "learning_rate": 0.00054,
+ "loss": 7.269683837890625,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.01747623272240162,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.230543613433838,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.02166980318725109,
+ "learning_rate": 0.000552,
+ "loss": 7.22433614730835,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.0234745554625988,
+ "learning_rate": 0.000558,
+ "loss": 7.173328399658203,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.02552041970193386,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.179364204406738,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.020357050001621246,
+ "learning_rate": 0.00057,
+ "loss": 7.192196369171143,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.019612686708569527,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.137343406677246,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.032169751822948456,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.146460056304932,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.049793023616075516,
+ "learning_rate": 0.000588,
+ "loss": 7.141317367553711,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.0761510357260704,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.135282516479492,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.08578687906265259,
+ "learning_rate": 0.0006,
+ "loss": 7.140151500701904,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.036344826221466064,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.103957176208496,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.05331861972808838,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.110017776489258,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.02870206907391548,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.05654764175415,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.0375482514500618,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.057608604431152,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.0498850978910923,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.024292469024658,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.04094330966472626,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.037162780761719,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.03770442679524422,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 6.996959686279297,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.021342018619179726,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 6.958870887756348,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03306065872311592,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 6.98040246963501,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.025964703410863876,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 6.964887619018555,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.027023782953619957,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 6.946185111999512,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.03145141154527664,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 6.921472549438477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.03913966566324234,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 6.934269905090332,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.019188789650797844,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 6.881157398223877,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03848212584853172,
+ "learning_rate": 0.000599973080557108,
+ "loss": 6.914263725280762,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.0421644002199173,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 6.875839710235596,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.03031616099178791,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.860045433044434,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.027611104771494865,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.843923568725586,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.03171936050057411,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.799792289733887,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.02691979706287384,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.80662727355957,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.022393599152565002,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.822749137878418,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.017323195934295654,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.792191028594971,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.03135865554213524,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.796602249145508,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.0219440758228302,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.770424842834473,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.023276135325431824,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.784184455871582,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.023612968623638153,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.789331912994385,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.02259398065507412,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.761030197143555,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.030283430591225624,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.743502616882324,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.025633230805397034,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.739071369171143,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.033353373408317566,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.734234809875488,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.04627382755279541,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.693207740783691,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.05969342216849327,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.7034912109375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.07122841477394104,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.7240376472473145,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.031403351575136185,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.673447608947754,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.037990208715200424,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.674369812011719,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.03902588412165642,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.664834976196289,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.043266333639621735,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.666050910949707,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.059933457523584366,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.657583236694336,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.10055211186408997,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.680497169494629,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.08691295236349106,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.668383598327637,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.04087744653224945,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.589937210083008,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06728368997573853,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.5973005294799805,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.041730936616659164,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.567692279815674,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.609742164611816,
+ "eval_runtime": 49.593,
+ "eval_samples_per_second": 49.241,
+ "eval_steps_per_second": 1.553,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.04628702253103256,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.580141067504883,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.034804414957761765,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.559717178344727,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.04005241394042969,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.5777997970581055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.0240564476698637,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.52710485458374,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.036014992743730545,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.565120697021484,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02892308682203293,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.5402326583862305,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.034206822514534,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.5129594802856445,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02702043578028679,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.508440017700195,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.030866436660289764,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.480038642883301,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.023725170642137527,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.469086647033691,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.024002181366086006,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.474283218383789,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.028654465451836586,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.460236549377441,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.036656998097896576,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.45772647857666,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.06503970921039581,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.444047927856445,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.10316940397024155,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.507786750793457,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.0898924171924591,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.492881774902344,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.049269743263721466,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.449578762054443,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05487145483493805,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.479488372802734,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.04447538033127785,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.43418025970459,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04508190602064133,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.435369491577148,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.04505731537938118,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.444422721862793,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.031474485993385315,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.392419815063477,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.03221476078033447,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.417405605316162,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.03744209557771683,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.402740955352783,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.04099615663290024,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.409887790679932,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04292457550764084,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.345979690551758,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031908776611089706,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.372236251831055,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.022193668410182,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.330808639526367,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.030483875423669815,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.347671031951904,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.027620326727628708,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.343536376953125,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.027604805305600166,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.32490348815918,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014721710234880447,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.335064888000488,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.025811146944761276,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.310954570770264,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.01853666640818119,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.2815728187561035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.02192576974630356,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.284873962402344,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.017560815438628197,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.2845940589904785,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.020787853747606277,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.263545036315918,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.0371549054980278,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.285816669464111,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.07219159603118896,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.3084869384765625,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.10214163362979889,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.3130292892456055,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.1074286475777626,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.346600532531738,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.06904911994934082,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.29556131362915,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.06845448166131973,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.283144950866699,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04981188476085663,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.29746675491333,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04484826698899269,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.2691450119018555,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.04637259617447853,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.272174835205078,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.03583662584424019,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.227545738220215,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.025700347498059273,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.2270379066467285,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.03341232240200043,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.237837791442871,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.024777855724096298,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.2240214347839355,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.026608696207404137,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.22879695892334,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.034130919724702835,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.2006306648254395,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.025297775864601135,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.18483829498291,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.022109126672148705,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.119647979736328,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.027213608846068382,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.179836750030518,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.020849496126174927,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.165006160736084,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.024126794189214706,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.152736663818359,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.020377766340970993,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.157219886779785,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.020924285054206848,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.143166542053223,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.01587589643895626,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.121140480041504,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.01662406511604786,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.131589412689209,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.017899204045534134,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.136538505554199,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.0141544658690691,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.092663288116455,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.01591854728758335,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.076398849487305,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.015422910451889038,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.086019515991211,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.015892159193754196,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.090867042541504,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.022027581930160522,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.104132652282715,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.030639713630080223,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.058344841003418,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.052022483199834824,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.070395469665527,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.09705248475074768,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.107680320739746,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.1113317608833313,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.174774169921875,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09728740900754929,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.172510147094727,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.336511611938477,
+ "eval_runtime": 50.1497,
+ "eval_samples_per_second": 48.694,
+ "eval_steps_per_second": 1.535,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.1381041258573532,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.3106584548950195,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.08354614675045013,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217999458312988,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.06536819040775299,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.203974723815918,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.06153649464249611,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.170844078063965,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.05597720295190811,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.130041599273682,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03696262091398239,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.123078346252441,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03601071238517761,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.117314338684082,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.027699364349246025,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.101516246795654,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.0266517773270607,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.121755599975586,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.03222489356994629,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.078366279602051,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.022328762337565422,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.050647735595703,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.022996751591563225,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.058256149291992,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.01829450950026512,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.04487419128418,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.020300056785345078,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.051216125488281,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.017267271876335144,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.016388416290283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.018193641677498817,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.044121742248535,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.014821356162428856,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.007028579711914,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.0176555048674345,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.016258239746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.014563479460775852,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.005519866943359,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.014726194553077221,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 5.960529327392578,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.015399504452943802,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.001366138458252,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.013989914208650589,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 5.9607391357421875,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.013990761712193489,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.004396438598633,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018094314262270927,
+ "learning_rate": 0.000597691359743243,
+ "loss": 5.993832588195801,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.0143580948933959,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 5.952960014343262,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.014977728947997093,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 5.951350688934326,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.01678791083395481,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 5.934988021850586,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.016002122312784195,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 5.914715766906738,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.013232443481683731,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 5.951240062713623,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.013604732230305672,
+ "learning_rate": 0.000597488038559129,
+ "loss": 5.917681694030762,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.015848932787775993,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 5.944948196411133,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.015438539907336235,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 5.937459945678711,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.011635526083409786,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 5.933730125427246,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.011920399963855743,
+ "learning_rate": 0.000597347745466109,
+ "loss": 5.922345161437988,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.013702520169317722,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 5.943288803100586,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.018035495653748512,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 5.8588948249816895,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0292848851531744,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 5.839761257171631,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.05226276442408562,
+ "learning_rate": 0.000597203657966319,
+ "loss": 5.876608848571777,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.07766798883676529,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 5.919356346130371,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.05613994598388672,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 5.92368745803833,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.027645597234368324,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 5.870124340057373,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.0372411273419857,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 5.867897987365723,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.046596284955739975,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 5.86529541015625,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.0585268996655941,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 5.866202354431152,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.07347770035266876,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 5.866185188293457,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.069547139108181,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 5.861482620239258,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.033684421330690384,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 5.838467121124268,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.03852876275777817,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 5.855601787567139,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.03771794214844704,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 5.8462324142456055,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.02633400820195675,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 5.802374839782715,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.04742211848497391,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 5.836568832397461,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.03631481155753136,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 5.845517635345459,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.03396187350153923,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 5.830820083618164,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.026903655380010605,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 5.814541816711426,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.026355763897299767,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 5.822052001953125,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.026643889024853706,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.798376083374023,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.029321137815713882,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.783513069152832,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.03359972685575485,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.766922950744629,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.04005341976881027,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.748568534851074,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.041460637003183365,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.766911506652832,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0358794629573822,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.768316745758057,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.02717026323080063,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.7515411376953125,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.02529299259185791,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.7466325759887695,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.03539387136697769,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.728026390075684,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.050219494849443436,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.733270645141602,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.047363556921482086,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.770201683044434,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03131734952330589,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.753687858581543,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03614291176199913,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.7307586669921875,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.02700044959783554,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.709892272949219,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.02606981247663498,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.712061405181885,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.03141666576266289,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.6848907470703125,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02606675960123539,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.692121505737305,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.743760108947754,
+ "eval_runtime": 50.5343,
+ "eval_samples_per_second": 48.324,
+ "eval_steps_per_second": 1.524,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.03948930278420448,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.681998252868652,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05606934055685997,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.7076287269592285,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05150521174073219,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.681793212890625,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.053244542330503464,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.716346740722656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.06655604392290115,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.686683654785156,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.067159004509449,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.676214218139648,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.07224184274673462,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.708571910858154,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.0759999081492424,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.729240417480469,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.058274514973163605,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.680136680603027,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.0665217861533165,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.699649810791016,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.06084189563989639,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.687278747558594,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.035804975777864456,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.653011322021484,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.040831539779901505,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.666504859924316,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.03754480183124542,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.683968544006348,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.03281058371067047,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.6533203125,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.0336633026599884,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.640488624572754,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.025204630568623543,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.604926586151123,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.02988347038626671,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.617283821105957,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.027737239375710487,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.630558967590332,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.019211027771234512,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.570818901062012,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.022949475795030594,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.58812141418457,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.02159263752400875,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.5474653244018555,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.0199187733232975,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.553997993469238,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.025105373933911324,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.544854164123535,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.020124755799770355,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.5797600746154785,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.02021503634750843,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.574714660644531,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.01958342269062996,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.547873497009277,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.01897963136434555,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.572911262512207,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.026948589831590652,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.546016693115234,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.03611157089471817,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.513533592224121,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.04173478111624718,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.54490852355957,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.04052264615893364,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.535876274108887,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.042120713740587234,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.520109176635742,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0592290461063385,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.52090311050415,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.05778008699417114,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.57314395904541,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.07328840345144272,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.564373970031738,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.08250871300697327,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.578287124633789,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.06307957321405411,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.573915958404541,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.06778600066900253,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.531377792358398,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.07800985127687454,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.580374717712402,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.058671027421951294,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.578775405883789,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.07165282964706421,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.569994926452637,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.05341324955224991,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.578280925750732,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.057680461555719376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.545825004577637,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.05264175310730934,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.542400360107422,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.036591529846191406,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.522270202636719,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.025456778705120087,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.491695404052734,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.029439611360430717,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.522220611572266,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.023043552413582802,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.488232612609863,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.023857619613409042,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.462826728820801,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.02031201496720314,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.483668327331543,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.019729577004909515,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.487090110778809,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.018742132931947708,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.434581756591797,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.017490746453404427,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.472935676574707,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.016272297129034996,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.452502727508545,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.016157913953065872,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.457169532775879,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.014938726089894772,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.4266357421875,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.013973338529467583,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.426214694976807,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.0145038440823555,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.4333648681640625,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.013497680425643921,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.383882522583008,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.01399766281247139,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.409458160400391,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.016220781952142715,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.387916088104248,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.01874464377760887,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.414336204528809,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.02214057557284832,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.385486602783203,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.029139326885342598,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.3819804191589355,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.04131987690925598,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.37774658203125,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.04928627610206604,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.357905387878418,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.05334208160638809,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.387972831726074,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.06314601749181747,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.409867286682129,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.06949040293693542,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.423060417175293,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.07983149588108063,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.398985385894775,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.047509752213954926,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.407474517822266,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.460700988769531,
+ "eval_runtime": 49.3626,
+ "eval_samples_per_second": 49.471,
+ "eval_steps_per_second": 1.56,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04200774058699608,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.358955383300781,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.05860564857721329,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.369879722595215,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.06536915898323059,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.381100177764893,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.06026811525225639,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.372524261474609,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.06861338019371033,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.395514011383057,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.071840800344944,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.432894706726074,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.05607983097434044,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.379566192626953,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.04762391373515129,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.358126640319824,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.03807833045721054,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.347950458526611,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.030898241326212883,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.338376998901367,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03171022981405258,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.339134693145752,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.02772417664527893,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.301703453063965,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0206220131367445,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.313223838806152,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.02028091810643673,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.329561233520508,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.01993311010301113,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.3053388595581055,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.019065946340560913,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.302499771118164,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.017696455121040344,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.269834995269775,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.017882494255900383,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.265854835510254,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.016467183828353882,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.288644790649414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.01916770078241825,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.267460823059082,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.017601126804947853,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.279624938964844,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.01793578453361988,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.241098880767822,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.022877344861626625,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.248425483703613,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.02525043673813343,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.2631072998046875,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.028719816356897354,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.275234222412109,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.029544269666075706,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.262460231781006,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.022554460912942886,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.2095489501953125,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.017118340358138084,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.1995849609375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02349669858813286,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.216951370239258,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.026420384645462036,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.207708358764648,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02973068691790104,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.219174385070801,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.0359313040971756,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.210330009460449,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.03432348370552063,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.178952217102051,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.02792678400874138,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.191634178161621,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02758507803082466,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.193273544311523,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.03249193727970123,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.168492794036865,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.046803560107946396,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.128959655761719,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.046261437237262726,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.209085464477539,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.053451329469680786,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.2477192878723145,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.06102827191352844,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.2313995361328125,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.06252525001764297,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.191498756408691,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.06869403272867203,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.185283660888672,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.05952492728829384,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.224945545196533,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.05461324006319046,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.211337089538574,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.049536194652318954,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.20504903793335,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.05308259278535843,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.213829040527344,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.052662745118141174,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.174736976623535,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.05244288966059685,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.211748123168945,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.04144108667969704,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.204808235168457,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03461266681551933,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.162985801696777,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03237008675932884,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.165428161621094,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.031408049166202545,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.187334060668945,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03933938592672348,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.146272659301758,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.037681944668293,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.166745662689209,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.034090764820575714,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.152158737182617,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.030193760991096497,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.17146110534668,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.02254509925842285,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.097983360290527,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.024477152153849602,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.1022138595581055,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.022516515105962753,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.12230110168457,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.023615261539816856,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.09193229675293,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.01930837333202362,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.146811485290527,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.021817106753587723,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.115335941314697,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.022727029398083687,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.086063385009766,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.023339051753282547,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.082242965698242,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.024126017466187477,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.058276176452637,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.025313936173915863,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.036754608154297,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.027025161311030388,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.090429306030273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.024794692173600197,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.074590682983398,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.020266752690076828,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.042743682861328,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.027681995183229446,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.053096771240234,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.0372479222714901,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.042097091674805,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.03679288923740387,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.019376754760742,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.116602897644043,
+ "eval_runtime": 50.1065,
+ "eval_samples_per_second": 48.736,
+ "eval_steps_per_second": 1.537,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.026690904051065445,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.00978946685791,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.023457694798707962,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.005631446838379,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.028971077874302864,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.010103225708008,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.02817085012793541,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.003941059112549,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.040707796812057495,
+ "learning_rate": 0.000586594769789753,
+ "loss": 4.988734245300293,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.055714529007673264,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.018104553222656,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.052254121750593185,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 4.979872703552246,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.04151077941060066,
+ "learning_rate": 0.000586356179990052,
+ "loss": 4.984282493591309,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.05464775860309601,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.0161895751953125,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.061077505350112915,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.020090579986572,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.06256042420864105,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.011456489562988,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.0691128820180893,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.039755344390869,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05278785154223442,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.039731979370117,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05808022618293762,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.023531436920166,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.05557863786816597,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.024357795715332,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07306662201881409,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.059075355529785,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.07831263542175293,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.082352638244629,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.0882449671626091,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.05513858795166,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.08709891885519028,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.069640636444092,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.04781542718410492,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.094158172607422,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.044078510254621506,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.018120765686035,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04004357010126114,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.019693851470947,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.043954044580459595,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.044619083404541,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.038904428482055664,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 4.987574100494385,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.024789584800601006,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 4.9606032371521,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.026804154738783836,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.022890090942383,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02187633328139782,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 4.971036911010742,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.020379744470119476,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 4.979018211364746,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.02170058898627758,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 4.947178363800049,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.021149510517716408,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 4.919921875,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02236221544444561,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 4.943971633911133,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.025872305035591125,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 4.908390045166016,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.025059638544917107,
+ "learning_rate": 0.000584288196583439,
+ "loss": 4.911075592041016,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.021707478910684586,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 4.902735710144043,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.01653476059436798,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 4.905120849609375,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.019008034840226173,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 4.907185077667236,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.01940055564045906,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 4.885231971740723,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.021345820277929306,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 4.928121089935303,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.027333103120326996,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 4.904714584350586,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.02732362225651741,
+ "learning_rate": 0.000583683733328402,
+ "loss": 4.909376621246338,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.02587667666375637,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 4.8610310554504395,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.019487181678414345,
+ "learning_rate": 0.000583508993216961,
+ "loss": 4.909744739532471,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.016421299427747726,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 4.878009796142578,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.02047211490571499,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 4.852285385131836,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.021656403318047523,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 4.865062236785889,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.02030806429684162,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 4.863739013671875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.01945783756673336,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 4.865248680114746,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.02060573361814022,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 4.830572128295898,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.01988993212580681,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 4.834822654724121,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.01843756064772606,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 4.85471248626709,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.017486490309238434,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 4.8294172286987305,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.018816275522112846,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 4.82774543762207,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.020159602165222168,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 4.849193572998047,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.024030091241002083,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 4.85036563873291,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.025499263778328896,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 4.825757026672363,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.020728887990117073,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 4.803972244262695,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.022537026554346085,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.778092384338379,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.035881903022527695,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 4.81960391998291,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.05718924105167389,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 4.864693641662598,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.05679478868842125,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 4.847718715667725,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.052322447299957275,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 4.851825714111328,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.045318495482206345,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 4.867410659790039,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.046519652009010315,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.826759338378906,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.039707787334918976,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 4.850564479827881,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.046257615089416504,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 4.841718673706055,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.05459553003311157,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.830893516540527,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.05208329111337662,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.8015618324279785,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.043796032667160034,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.827643871307373,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.04952182248234749,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.831768035888672,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.05792606994509697,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 4.883152961730957,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.06186029314994812,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.793818473815918,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.058359310030937195,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.8627729415893555,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.9447550773620605,
+ "eval_runtime": 50.0659,
+ "eval_samples_per_second": 48.776,
+ "eval_steps_per_second": 1.538,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.06325788050889969,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.7931928634643555,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.05350707471370697,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.828718185424805,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.04171562194824219,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.798154830932617,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.03418999910354614,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.79454231262207,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.03386062756180763,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.76263427734375,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0310321357101202,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.709232807159424,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.032974112778902054,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.811257362365723,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02815418690443039,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.749312400817871,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.023892700672149658,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.770686149597168,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.03072652779519558,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.740710258483887,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03333617001771927,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.767822265625,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.032159335911273956,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.707130432128906,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.023751014843583107,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.723886489868164,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.02246025577187538,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.70332145690918,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.022643405944108963,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.718954086303711,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.020911017432808876,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.720003128051758,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.02110806293785572,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.714095115661621,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.017663342878222466,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.683366775512695,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.019528647884726524,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.701981544494629,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.015601493418216705,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.659536361694336,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.016869334504008293,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.646300315856934,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.017247309908270836,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.689617156982422,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.020642591640353203,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.678384780883789,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.018326908349990845,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.673406600952148,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.016420576721429825,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.6643571853637695,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.01882869005203247,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.652836799621582,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.023275425657629967,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.629349708557129,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.026721643283963203,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.644682884216309,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.028443999588489532,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.663126468658447,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.02861904352903366,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.636683464050293,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.03484676778316498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.667752265930176,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04475142061710358,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.626583576202393,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.0478503555059433,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.676537990570068,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.04359045997262001,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.649236679077148,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.0330129936337471,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.678656578063965,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03456676006317139,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.630350112915039,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.031169800087809563,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.627366065979004,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03394385799765587,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.625247478485107,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.03249797597527504,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.618417739868164,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.030679678544402122,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.641651153564453,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.029554512351751328,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.6172099113464355,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.03234311193227768,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.6053147315979,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.029909640550613403,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.611989498138428,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.03044920787215233,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.60286283493042,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.031783826649188995,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.6322784423828125,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.034975890070199966,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.6145548820495605,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.05920281633734703,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.649412155151367,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.060736894607543945,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.643343448638916,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.03681420907378197,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.635283946990967,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.038537293672561646,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.600273132324219,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.0366017185151577,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.614137649536133,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.03463922068476677,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.579721450805664,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.03762223199009895,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.599118709564209,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.03587616607546806,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.571494102478027,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.028583329170942307,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.56227970123291,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.025082120671868324,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.625732421875,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.02637811005115509,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.559928894042969,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.02764730341732502,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.565244197845459,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.02531011402606964,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.56653356552124,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.02294703759253025,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.596232891082764,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03052598237991333,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.547686576843262,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.040406130254268646,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.579448699951172,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.045926716178655624,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.612858295440674,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.05101209506392479,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.565781593322754,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.045814961194992065,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.558928489685059,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.030373822897672653,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.567257881164551,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.029190875589847565,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.5373687744140625,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.026079056784510612,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.563750267028809,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.025766579434275627,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.553088188171387,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.028273295611143112,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.5565032958984375,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.03378719836473465,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.561317443847656,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.043838903307914734,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.53466272354126,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.666384696960449,
+ "eval_runtime": 50.1671,
+ "eval_samples_per_second": 48.677,
+ "eval_steps_per_second": 1.535,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.03988054767251015,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.519570350646973,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.03215770795941353,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.479830741882324,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.0321921780705452,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.5257158279418945,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.031857915222644806,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.499466896057129,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.024396119639277458,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.489823341369629,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.02256869524717331,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.457242965698242,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.025249306112527847,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.496397018432617,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.029946032911539078,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.48353385925293,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.03426036611199379,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.4692606925964355,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02926315739750862,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.4472761154174805,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02205306850373745,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.461005687713623,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.02438628487288952,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.476344108581543,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02441387251019478,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.449878215789795,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.02887449599802494,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.476753234863281,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.032335247844457626,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.462822914123535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.029833588749170303,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.47635555267334,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.028770513832569122,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.439871788024902,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.0314413458108902,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.456049919128418,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.028909480199217796,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.466887474060059,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.0298979040235281,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.40897274017334,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03514264151453972,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.462074279785156,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.03367023915052414,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.4671430587768555,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.028293712064623833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.472861289978027,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.032533466815948486,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.402676582336426,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.036256611347198486,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.459911346435547,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03544549643993378,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.426422595977783,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.03697146475315094,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.43408203125,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.043149907141923904,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.450157165527344,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.043046750128269196,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.4252214431762695,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.04190967604517937,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.462478160858154,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.04681714251637459,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.500005722045898,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.038236260414123535,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.424496650695801,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.028547903522849083,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.46662712097168,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.02977948635816574,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.408547401428223,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02598760835826397,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.392356872558594,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.022961542010307312,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.388491630554199,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.02609466016292572,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.399369239807129,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.02709716558456421,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.4510626792907715,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.026610752567648888,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.379818916320801,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.026685334742069244,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.375118255615234,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.02582699805498123,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.385746002197266,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.028111375868320465,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.407883644104004,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.031225524842739105,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.416450500488281,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.03400132805109024,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.392469882965088,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.030483758077025414,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.417096138000488,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.02557903155684471,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.390939712524414,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.0236377976834774,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.383040904998779,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.023326750844717026,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.401363372802734,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.023898446932435036,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.392416954040527,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.027503756806254387,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.377828598022461,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.030102312564849854,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.374492168426514,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.02767282910645008,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.35695219039917,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.02831653691828251,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.400944709777832,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.028422733768820763,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.387299537658691,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.024376874789595604,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.348391532897949,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02159036695957184,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.358495235443115,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.023025978356599808,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.3448486328125,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029435761272907257,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.368935585021973,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03359731286764145,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.370461463928223,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.037005532532930374,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.3679938316345215,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.03355303779244423,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.3828020095825195,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.029443955048918724,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.356979846954346,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.02460344508290291,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.341938495635986,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02147839404642582,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.354561805725098,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.020635880529880524,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.354128360748291,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022505762055516243,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.351652145385742,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.025322064757347107,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.347809791564941,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02762349136173725,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.361332893371582,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02571176551282406,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.381443023681641,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.025545312091708183,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.311899662017822,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.028549924492836,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.352021217346191,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.037783220410346985,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.319358825683594,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.487585067749023,
+ "eval_runtime": 50.2429,
+ "eval_samples_per_second": 48.604,
+ "eval_steps_per_second": 1.533,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.040087390691041946,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.289389133453369,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.03734960779547691,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.333593368530273,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.048258502036333084,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.311117649078369,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.043526504188776016,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.303456783294678,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.03846628963947296,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.259490013122559,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03639454022049904,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.30372953414917,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.03836316615343094,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.311273574829102,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.04249444976449013,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.26509952545166,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.04638556018471718,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.329259872436523,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.04804485663771629,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.298549652099609,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.04696325212717056,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.2951555252075195,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.054754987359046936,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.32574987411499,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.05372392013669014,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.316179275512695,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.05257962644100189,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.326512336730957,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.0476440005004406,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.284404754638672,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.05022618547081947,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.339445114135742,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.044422268867492676,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.283768653869629,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.042205870151519775,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.318146705627441,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03977298364043236,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.234925270080566,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03208024427294731,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.2587504386901855,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.04028482735157013,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.294867515563965,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.04188309237360954,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.253474712371826,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.03933689743280411,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.2865424156188965,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.03496019169688225,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.271109104156494,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.03440522402524948,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.258638381958008,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.029385464265942574,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.271941184997559,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.026232419535517693,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.297451972961426,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.022983932867646217,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.245251655578613,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.022466372698545456,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.259578704833984,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.01931786723434925,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.259744644165039,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.019706910476088524,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.266848087310791,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.019449997693300247,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.2461042404174805,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020426811650395393,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.282078266143799,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.02067681774497032,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.248796463012695,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.01784616708755493,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.192205429077148,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.01794990338385105,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.232247829437256,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016518203541636467,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.236779689788818,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.016410376876592636,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.27880334854126,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.01851414516568184,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.2391743659973145,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017605066299438477,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.273436546325684,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.016581173986196518,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.236335277557373,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.017124859616160393,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.272163391113281,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.01826116070151329,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.236220359802246,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.01905812881886959,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.213980197906494,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.019302286207675934,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.242644309997559,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.021731656044721603,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.194512367248535,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.02231074497103691,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.212715148925781,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025133498013019562,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.1991729736328125,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03277267888188362,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.219727516174316,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.030277423560619354,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.226284980773926,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.020345306023955345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.192004203796387,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.018378086388111115,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.206856727600098,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.020663054659962654,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.207428932189941,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.014741736464202404,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.209682941436768,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.017487799748778343,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.190214157104492,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.016403138637542725,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.176736354827881,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.015877608209848404,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.182591915130615,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.018375791609287262,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.159113883972168,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.022490287199616432,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.22792911529541,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.026202555745840073,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.146831512451172,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.02694041095674038,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.197538375854492,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.023319529369473457,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.217145919799805,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.02562747150659561,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.189914703369141,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.03190474957227707,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.215826988220215,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.0311384666711092,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.204189300537109,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.029849188402295113,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.206056118011475,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.026431098580360413,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.162120819091797,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.027396157383918762,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.2253851890563965,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.03008226677775383,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.218181610107422,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.03269116207957268,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.206615447998047,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.033613964915275574,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.211427211761475,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03137386962771416,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.175864219665527,
+ "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": 16,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/baseline-lr6e-4/checkpoint-720/training_args.bin b/runs/baseline-lr6e-4/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..8a14f0f6beb1ab5a1dd1156d6b39b5856989308b
--- /dev/null
+++ b/runs/baseline-lr6e-4/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ea296c5359b4cc4294bda4711745460e3ae69b15340de182527701445fd7555
+size 5265